dcap-qvl 0.3.0__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dcap-qvl might be problematic. Click here for more details.

Files changed (86) hide show
  1. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/.github/PUBLISHING.md +1 -1
  2. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/.github/workflows/python-wheels.yml +9 -9
  3. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/.github/workflows/release.yml +3 -3
  4. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/.github/workflows/rust.yml +5 -5
  5. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/Cargo.lock +74 -147
  6. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/Cargo.toml +11 -6
  7. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/LICENSE +1 -1
  8. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/Makefile +8 -2
  9. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/PKG-INFO +72 -18
  10. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/README.md +16 -6
  11. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/docs/README_Python.md +71 -17
  12. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/pyproject.toml +1 -1
  13. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python/dcap_qvl/__init__.py +12 -74
  14. {dcap_qvl-0.3.0/python-bindings → dcap_qvl-0.3.2}/python/dcap_qvl/__init__.pyi +21 -0
  15. dcap_qvl-0.3.2/python-bindings/README.md +147 -0
  16. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/docs/PYTHON_TESTING.md +16 -3
  17. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/docs/README_Python.md +71 -17
  18. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/pyproject.toml +1 -1
  19. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/python/dcap_qvl/__init__.py +12 -74
  20. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2/python-bindings}/python/dcap_qvl/__init__.pyi +21 -0
  21. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/scripts/build_wheels.py +2 -1
  22. dcap_qvl-0.3.2/python-bindings/tests/test_all_async_functions.py +302 -0
  23. dcap_qvl-0.3.2/python-bindings/tests/test_async_collateral.py +127 -0
  24. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/tests/test_collateral_api.py +16 -34
  25. dcap_qvl-0.3.2/python-bindings/tests/test_with_samples.py +220 -0
  26. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/src/collateral.rs +6 -6
  27. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/src/lib.rs +7 -0
  28. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/src/python.rs +31 -1
  29. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/src/quote.rs +77 -12
  30. dcap_qvl-0.3.2/src/tcb_info.rs +57 -0
  31. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/src/verify.rs +7 -0
  32. dcap_qvl-0.3.0/python-bindings/README.md +0 -118
  33. dcap_qvl-0.3.0/src/tcb_info.rs +0 -44
  34. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/.github/dependabot.yml +0 -0
  35. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/.gitignore +0 -0
  36. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/.gitignore +0 -0
  37. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/.pre-commit-config.yaml +0 -0
  38. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/docs/BUILDING.md +0 -0
  39. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/examples/basic_test.py +0 -0
  40. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/examples/python_example.py +0 -0
  41. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/scripts/build_wheels.sh +0 -0
  42. {dcap_qvl-0.3.0/python-bindings/scripts → dcap_qvl-0.3.2/python-bindings/tests}/test_cross_versions.sh +0 -0
  43. {dcap_qvl-0.3.0/python-bindings/scripts → dcap_qvl-0.3.2/python-bindings/tests}/test_installation.py +0 -0
  44. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/tests/test_python_bindings.py +0 -0
  45. {dcap_qvl-0.3.0/python-bindings/scripts → dcap_qvl-0.3.2/python-bindings/tests}/test_python_versions.sh +0 -0
  46. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/python-bindings/uv.lock +0 -0
  47. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/sample/quote-from-tappd.hex +0 -0
  48. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/sample/sgx_quote +0 -0
  49. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/sample/sgx_quote_collateral.json +0 -0
  50. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/sample/tdx-quote.hex +0 -0
  51. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/sample/tdx_quote +0 -0
  52. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/sample/tdx_quote_collateral.json +0 -0
  53. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/src/TrustedRootCA.der +0 -0
  54. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/src/constants.rs +0 -0
  55. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/src/utils.rs +0 -0
  56. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/esbuild/.gitignore +0 -0
  57. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/esbuild/README.md +0 -0
  58. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/esbuild/package.json +0 -0
  59. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/esbuild/pnpm-lock.yaml +0 -0
  60. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/esbuild/src/global.d.ts +0 -0
  61. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/esbuild/src/index.html +0 -0
  62. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/esbuild/src/main.ts +0 -0
  63. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/esbuild/src/sample/tdx_quote +0 -0
  64. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/esbuild/tsconfig.json +0 -0
  65. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/js/.gitignore +0 -0
  66. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/js/README.md +0 -0
  67. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/js/get_collateral_node.js +0 -0
  68. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/js/get_collateral_web.html +0 -0
  69. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/js/get_collateral_web.js +0 -0
  70. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/js/index.html +0 -0
  71. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/js/verify_quote_node.js +0 -0
  72. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/js/verify_quote_web.js +0 -0
  73. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/snapshots/verify_quote__could_parse_sgx_quote.snap +0 -0
  74. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/snapshots/verify_quote__could_parse_tdx_quote.snap +0 -0
  75. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/verify_quote.rs +0 -0
  76. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/.gitignore +0 -0
  77. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/README.md +0 -0
  78. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/index.html +0 -0
  79. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/package.json +0 -0
  80. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/pnpm-lock.yaml +0 -0
  81. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/public/sample/tdx_quote +0 -0
  82. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/src/main.ts +0 -0
  83. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/src/style.css +0 -0
  84. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/src/vite-env.d.ts +0 -0
  85. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/tsconfig.json +0 -0
  86. {dcap_qvl-0.3.0 → dcap_qvl-0.3.2}/tests/vite/vite.config.ts +0 -0
@@ -62,7 +62,7 @@ All wheels are built with abi3 (stable ABI) enabled, meaning:
62
62
  2. **Local testing**:
63
63
  ```bash
64
64
  cd python-bindings
65
- ./scripts/test_python_versions.sh
65
+ ./tests/test_python_versions.sh
66
66
  ```
67
67
 
68
68
  ## Rust Crate (crates.io)
@@ -15,7 +15,7 @@ jobs:
15
15
  build-wheels:
16
16
  runs-on: ubuntu-latest
17
17
  steps:
18
- - uses: actions/checkout@v4
18
+ - uses: actions/checkout@v5
19
19
  - name: Install uv
20
20
  uses: astral-sh/setup-uv@v6
21
21
  - name: Setup Python 3.8
@@ -54,7 +54,7 @@ jobs:
54
54
  PYTHONIOENCODING: "utf-8"
55
55
  PYTHONUTF8: "1"
56
56
  steps:
57
- - uses: actions/checkout@v4
57
+ - uses: actions/checkout@v5
58
58
  - name: Install uv
59
59
  uses: astral-sh/setup-uv@v6
60
60
  - name: Setup Python 3.8
@@ -80,7 +80,7 @@ jobs:
80
80
  macos-intel:
81
81
  runs-on: macos-13 # Intel runner
82
82
  steps:
83
- - uses: actions/checkout@v4
83
+ - uses: actions/checkout@v5
84
84
  - name: Install uv
85
85
  uses: astral-sh/setup-uv@v6
86
86
  - name: Setup Python 3.8
@@ -108,7 +108,7 @@ jobs:
108
108
  sdist:
109
109
  runs-on: ubuntu-latest
110
110
  steps:
111
- - uses: actions/checkout@v4
111
+ - uses: actions/checkout@v5
112
112
  - uses: actions-rs/toolchain@v1
113
113
  with:
114
114
  profile: minimal
@@ -139,7 +139,7 @@ jobs:
139
139
  id-token: write
140
140
  steps:
141
141
  - name: Download all artifacts
142
- uses: actions/download-artifact@v4
142
+ uses: actions/download-artifact@v5
143
143
  with:
144
144
  pattern: wheels-*
145
145
  merge-multiple: true
@@ -164,7 +164,7 @@ jobs:
164
164
  id-token: write
165
165
  steps:
166
166
  - name: Download all artifacts
167
- uses: actions/download-artifact@v4
167
+ uses: actions/download-artifact@v5
168
168
  with:
169
169
  pattern: wheels-*
170
170
  merge-multiple: true
@@ -194,13 +194,13 @@ jobs:
194
194
  - os: macos-latest
195
195
  python-version: "3.9"
196
196
  steps:
197
- - uses: actions/checkout@v4
197
+ - uses: actions/checkout@v5
198
198
  - name: Install uv
199
199
  uses: astral-sh/setup-uv@v6
200
200
  - name: Setup Python ${{ matrix.python-version }}
201
201
  run: uv venv --python ${{ matrix.python-version }}
202
202
  - name: Download wheels
203
- uses: actions/download-artifact@v4
203
+ uses: actions/download-artifact@v5
204
204
  with:
205
205
  pattern: wheels-*
206
206
  merge-multiple: true
@@ -232,4 +232,4 @@ jobs:
232
232
  fi
233
233
  - name: Test installation
234
234
  working-directory: python-bindings
235
- run: uv run python scripts/test_installation.py
235
+ run: uv run python tests/test_installation.py
@@ -27,7 +27,7 @@ jobs:
27
27
  release-id: ${{ steps.create-release.outputs.id }}
28
28
  upload-url: ${{ steps.create-release.outputs.upload_url }}
29
29
  steps:
30
- - uses: actions/checkout@v4
30
+ - uses: actions/checkout@v5
31
31
  with:
32
32
  fetch-depth: 0
33
33
 
@@ -116,7 +116,7 @@ jobs:
116
116
  artifact-name: dcap-qvl-macos-aarch64
117
117
 
118
118
  steps:
119
- - uses: actions/checkout@v4
119
+ - uses: actions/checkout@v5
120
120
 
121
121
  - name: Install Rust
122
122
  uses: dtolnay/rust-toolchain@stable
@@ -147,7 +147,7 @@ jobs:
147
147
  needs: create-release
148
148
  runs-on: ubuntu-latest
149
149
  steps:
150
- - uses: actions/checkout@v4
150
+ - uses: actions/checkout@v5
151
151
 
152
152
  - name: Install Rust
153
153
  uses: dtolnay/rust-toolchain@stable
@@ -15,7 +15,7 @@ jobs:
15
15
  runs-on: ubuntu-latest
16
16
 
17
17
  steps:
18
- - uses: actions/checkout@v4
18
+ - uses: actions/checkout@v5
19
19
  - name: Build
20
20
  run: cargo build --verbose
21
21
  - name: Run tests
@@ -25,7 +25,7 @@ jobs:
25
25
  name: Check WebAssembly target
26
26
  runs-on: ubuntu-latest
27
27
  steps:
28
- - uses: actions/checkout@v4
28
+ - uses: actions/checkout@v5
29
29
  - name: Add wasm32 target
30
30
  run: rustup target add wasm32-unknown-unknown
31
31
  - name: Check wasm32 build
@@ -35,7 +35,7 @@ jobs:
35
35
  name: Format code
36
36
  runs-on: ubuntu-latest
37
37
  steps:
38
- - uses: actions/checkout@v4
38
+ - uses: actions/checkout@v5
39
39
  - name: Format code
40
40
  run: cargo fmt --all -- --check
41
41
 
@@ -43,7 +43,7 @@ jobs:
43
43
  name: Check code with clippy
44
44
  runs-on: ubuntu-latest
45
45
  steps:
46
- - uses: actions/checkout@v4
46
+ - uses: actions/checkout@v5
47
47
  - name: Check code with clippy
48
48
  run: cargo clippy --all
49
49
 
@@ -51,6 +51,6 @@ jobs:
51
51
  name: Check cli code with clippy
52
52
  runs-on: ubuntu-latest
53
53
  steps:
54
- - uses: actions/checkout@v4
54
+ - uses: actions/checkout@v5
55
55
  - name: Check cli code with clippy
56
56
  run: cd cli && cargo clippy --all
@@ -103,11 +103,34 @@ dependencies = [
103
103
  "wyz",
104
104
  ]
105
105
 
106
+ [[package]]
107
+ name = "borsh"
108
+ version = "1.5.7"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
111
+ dependencies = [
112
+ "borsh-derive",
113
+ "cfg_aliases",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "borsh-derive"
118
+ version = "1.5.7"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3"
121
+ dependencies = [
122
+ "once_cell",
123
+ "proc-macro-crate",
124
+ "proc-macro2",
125
+ "quote",
126
+ "syn",
127
+ ]
128
+
106
129
  [[package]]
107
130
  name = "bumpalo"
108
- version = "3.19.0"
131
+ version = "3.18.1"
109
132
  source = "registry+https://github.com/rust-lang/crates.io-index"
110
- checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
133
+ checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
111
134
 
112
135
  [[package]]
113
136
  name = "byte-slice-cast"
@@ -129,9 +152,9 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
129
152
 
130
153
  [[package]]
131
154
  name = "cc"
132
- version = "1.2.30"
155
+ version = "1.2.27"
133
156
  source = "registry+https://github.com/rust-lang/crates.io-index"
134
- checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7"
157
+ checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
135
158
  dependencies = [
136
159
  "shlex",
137
160
  ]
@@ -220,11 +243,12 @@ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
220
243
 
221
244
  [[package]]
222
245
  name = "dcap-qvl"
223
- version = "0.3.0"
246
+ version = "0.3.2"
224
247
  dependencies = [
225
248
  "anyhow",
226
249
  "asn1_der",
227
250
  "base64",
251
+ "borsh",
228
252
  "byteorder",
229
253
  "chrono",
230
254
  "const-oid",
@@ -355,12 +379,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
355
379
 
356
380
  [[package]]
357
381
  name = "errno"
358
- version = "0.3.13"
382
+ version = "0.3.12"
359
383
  source = "registry+https://github.com/rust-lang/crates.io-index"
360
- checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
384
+ checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
361
385
  dependencies = [
362
386
  "libc",
363
- "windows-sys 0.60.2",
387
+ "windows-sys 0.59.0",
364
388
  ]
365
389
 
366
390
  [[package]]
@@ -535,9 +559,9 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
535
559
 
536
560
  [[package]]
537
561
  name = "h2"
538
- version = "0.4.11"
562
+ version = "0.4.10"
539
563
  source = "registry+https://github.com/rust-lang/crates.io-index"
540
- checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
564
+ checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
541
565
  dependencies = [
542
566
  "atomic-waker",
543
567
  "bytes",
@@ -710,9 +734,9 @@ dependencies = [
710
734
 
711
735
  [[package]]
712
736
  name = "hyper-util"
713
- version = "0.1.16"
737
+ version = "0.1.14"
714
738
  source = "registry+https://github.com/rust-lang/crates.io-index"
715
- checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
739
+ checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
716
740
  dependencies = [
717
741
  "base64",
718
742
  "bytes",
@@ -726,7 +750,7 @@ dependencies = [
726
750
  "libc",
727
751
  "percent-encoding",
728
752
  "pin-project-lite",
729
- "socket2 0.6.0",
753
+ "socket2",
730
754
  "system-configuration",
731
755
  "tokio",
732
756
  "tower-service",
@@ -854,9 +878,9 @@ dependencies = [
854
878
 
855
879
  [[package]]
856
880
  name = "indexmap"
857
- version = "2.10.0"
881
+ version = "2.9.0"
858
882
  source = "registry+https://github.com/rust-lang/crates.io-index"
859
- checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
883
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
860
884
  dependencies = [
861
885
  "equivalent",
862
886
  "hashbrown",
@@ -879,24 +903,13 @@ dependencies = [
879
903
  "similar",
880
904
  ]
881
905
 
882
- [[package]]
883
- name = "io-uring"
884
- version = "0.7.9"
885
- source = "registry+https://github.com/rust-lang/crates.io-index"
886
- checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
887
- dependencies = [
888
- "bitflags",
889
- "cfg-if",
890
- "libc",
891
- ]
892
-
893
906
  [[package]]
894
907
  name = "ipconfig"
895
908
  version = "0.3.2"
896
909
  source = "registry+https://github.com/rust-lang/crates.io-index"
897
910
  checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
898
911
  dependencies = [
899
- "socket2 0.5.10",
912
+ "socket2",
900
913
  "widestring",
901
914
  "windows-sys 0.48.0",
902
915
  "winreg",
@@ -1340,7 +1353,7 @@ dependencies = [
1340
1353
  "quinn-udp",
1341
1354
  "rustc-hash",
1342
1355
  "rustls",
1343
- "socket2 0.5.10",
1356
+ "socket2",
1344
1357
  "thiserror 2.0.12",
1345
1358
  "tokio",
1346
1359
  "tracing",
@@ -1356,7 +1369,7 @@ dependencies = [
1356
1369
  "bytes",
1357
1370
  "getrandom 0.3.3",
1358
1371
  "lru-slab",
1359
- "rand 0.9.2",
1372
+ "rand 0.9.1",
1360
1373
  "ring",
1361
1374
  "rustc-hash",
1362
1375
  "rustls",
@@ -1377,7 +1390,7 @@ dependencies = [
1377
1390
  "cfg_aliases",
1378
1391
  "libc",
1379
1392
  "once_cell",
1380
- "socket2 0.5.10",
1393
+ "socket2",
1381
1394
  "tracing",
1382
1395
  "windows-sys 0.59.0",
1383
1396
  ]
@@ -1416,9 +1429,9 @@ dependencies = [
1416
1429
 
1417
1430
  [[package]]
1418
1431
  name = "rand"
1419
- version = "0.9.2"
1432
+ version = "0.9.1"
1420
1433
  source = "registry+https://github.com/rust-lang/crates.io-index"
1421
- checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1434
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
1422
1435
  dependencies = [
1423
1436
  "rand_chacha 0.9.0",
1424
1437
  "rand_core 0.9.3",
@@ -1464,18 +1477,18 @@ dependencies = [
1464
1477
 
1465
1478
  [[package]]
1466
1479
  name = "redox_syscall"
1467
- version = "0.5.17"
1480
+ version = "0.5.13"
1468
1481
  source = "registry+https://github.com/rust-lang/crates.io-index"
1469
- checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
1482
+ checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
1470
1483
  dependencies = [
1471
1484
  "bitflags",
1472
1485
  ]
1473
1486
 
1474
1487
  [[package]]
1475
1488
  name = "reqwest"
1476
- version = "0.12.22"
1489
+ version = "0.12.20"
1477
1490
  source = "registry+https://github.com/rust-lang/crates.io-index"
1478
- checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
1491
+ checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
1479
1492
  dependencies = [
1480
1493
  "base64",
1481
1494
  "bytes",
@@ -1541,9 +1554,9 @@ dependencies = [
1541
1554
 
1542
1555
  [[package]]
1543
1556
  name = "rustc-demangle"
1544
- version = "0.1.26"
1557
+ version = "0.1.25"
1545
1558
  source = "registry+https://github.com/rust-lang/crates.io-index"
1546
- checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
1559
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
1547
1560
 
1548
1561
  [[package]]
1549
1562
  name = "rustc-hash"
@@ -1553,27 +1566,27 @@ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1553
1566
 
1554
1567
  [[package]]
1555
1568
  name = "rustix"
1556
- version = "1.0.8"
1569
+ version = "1.0.7"
1557
1570
  source = "registry+https://github.com/rust-lang/crates.io-index"
1558
- checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
1571
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
1559
1572
  dependencies = [
1560
1573
  "bitflags",
1561
1574
  "errno",
1562
1575
  "libc",
1563
1576
  "linux-raw-sys",
1564
- "windows-sys 0.60.2",
1577
+ "windows-sys 0.59.0",
1565
1578
  ]
1566
1579
 
1567
1580
  [[package]]
1568
1581
  name = "rustls"
1569
- version = "0.23.31"
1582
+ version = "0.23.28"
1570
1583
  source = "registry+https://github.com/rust-lang/crates.io-index"
1571
- checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
1584
+ checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
1572
1585
  dependencies = [
1573
1586
  "once_cell",
1574
1587
  "ring",
1575
1588
  "rustls-pki-types",
1576
- "rustls-webpki 0.103.4",
1589
+ "rustls-webpki 0.103.3",
1577
1590
  "subtle",
1578
1591
  "zeroize",
1579
1592
  ]
@@ -1601,9 +1614,9 @@ dependencies = [
1601
1614
 
1602
1615
  [[package]]
1603
1616
  name = "rustls-webpki"
1604
- version = "0.103.4"
1617
+ version = "0.103.3"
1605
1618
  source = "registry+https://github.com/rust-lang/crates.io-index"
1606
- checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
1619
+ checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
1607
1620
  dependencies = [
1608
1621
  "ring",
1609
1622
  "rustls-pki-types",
@@ -1728,9 +1741,9 @@ dependencies = [
1728
1741
 
1729
1742
  [[package]]
1730
1743
  name = "serde_json"
1731
- version = "1.0.141"
1744
+ version = "1.0.140"
1732
1745
  source = "registry+https://github.com/rust-lang/crates.io-index"
1733
- checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
1746
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
1734
1747
  dependencies = [
1735
1748
  "indexmap",
1736
1749
  "itoa",
@@ -1794,16 +1807,6 @@ dependencies = [
1794
1807
  "windows-sys 0.52.0",
1795
1808
  ]
1796
1809
 
1797
- [[package]]
1798
- name = "socket2"
1799
- version = "0.6.0"
1800
- source = "registry+https://github.com/rust-lang/crates.io-index"
1801
- checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
1802
- dependencies = [
1803
- "libc",
1804
- "windows-sys 0.59.0",
1805
- ]
1806
-
1807
1810
  [[package]]
1808
1811
  name = "spki"
1809
1812
  version = "0.7.3"
@@ -1828,9 +1831,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1828
1831
 
1829
1832
  [[package]]
1830
1833
  name = "syn"
1831
- version = "2.0.104"
1834
+ version = "2.0.103"
1832
1835
  source = "registry+https://github.com/rust-lang/crates.io-index"
1833
- checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
1836
+ checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8"
1834
1837
  dependencies = [
1835
1838
  "proc-macro2",
1836
1839
  "quote",
@@ -1970,22 +1973,20 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1970
1973
 
1971
1974
  [[package]]
1972
1975
  name = "tokio"
1973
- version = "1.47.0"
1976
+ version = "1.45.1"
1974
1977
  source = "registry+https://github.com/rust-lang/crates.io-index"
1975
- checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35"
1978
+ checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
1976
1979
  dependencies = [
1977
1980
  "backtrace",
1978
1981
  "bytes",
1979
- "io-uring",
1980
1982
  "libc",
1981
1983
  "mio",
1982
1984
  "parking_lot",
1983
1985
  "pin-project-lite",
1984
1986
  "signal-hook-registry",
1985
- "slab",
1986
- "socket2 0.6.0",
1987
+ "socket2",
1987
1988
  "tokio-macros",
1988
- "windows-sys 0.59.0",
1989
+ "windows-sys 0.52.0",
1989
1990
  ]
1990
1991
 
1991
1992
  [[package]]
@@ -2301,9 +2302,9 @@ dependencies = [
2301
2302
 
2302
2303
  [[package]]
2303
2304
  name = "webpki-roots"
2304
- version = "1.0.2"
2305
+ version = "1.0.0"
2305
2306
  source = "registry+https://github.com/rust-lang/crates.io-index"
2306
- checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
2307
+ checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
2307
2308
  dependencies = [
2308
2309
  "rustls-pki-types",
2309
2310
  ]
@@ -2322,9 +2323,9 @@ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2322
2323
 
2323
2324
  [[package]]
2324
2325
  name = "windows-registry"
2325
- version = "0.5.3"
2326
+ version = "0.5.2"
2326
2327
  source = "registry+https://github.com/rust-lang/crates.io-index"
2327
- checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
2328
+ checksum = "b3bab093bdd303a1240bb99b8aba8ea8a69ee19d34c9e2ef9594e708a4878820"
2328
2329
  dependencies = [
2329
2330
  "windows-link",
2330
2331
  "windows-result",
@@ -2376,15 +2377,6 @@ dependencies = [
2376
2377
  "windows-targets 0.52.6",
2377
2378
  ]
2378
2379
 
2379
- [[package]]
2380
- name = "windows-sys"
2381
- version = "0.60.2"
2382
- source = "registry+https://github.com/rust-lang/crates.io-index"
2383
- checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2384
- dependencies = [
2385
- "windows-targets 0.53.3",
2386
- ]
2387
-
2388
2380
  [[package]]
2389
2381
  name = "windows-targets"
2390
2382
  version = "0.48.5"
@@ -2409,30 +2401,13 @@ dependencies = [
2409
2401
  "windows_aarch64_gnullvm 0.52.6",
2410
2402
  "windows_aarch64_msvc 0.52.6",
2411
2403
  "windows_i686_gnu 0.52.6",
2412
- "windows_i686_gnullvm 0.52.6",
2404
+ "windows_i686_gnullvm",
2413
2405
  "windows_i686_msvc 0.52.6",
2414
2406
  "windows_x86_64_gnu 0.52.6",
2415
2407
  "windows_x86_64_gnullvm 0.52.6",
2416
2408
  "windows_x86_64_msvc 0.52.6",
2417
2409
  ]
2418
2410
 
2419
- [[package]]
2420
- name = "windows-targets"
2421
- version = "0.53.3"
2422
- source = "registry+https://github.com/rust-lang/crates.io-index"
2423
- checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
2424
- dependencies = [
2425
- "windows-link",
2426
- "windows_aarch64_gnullvm 0.53.0",
2427
- "windows_aarch64_msvc 0.53.0",
2428
- "windows_i686_gnu 0.53.0",
2429
- "windows_i686_gnullvm 0.53.0",
2430
- "windows_i686_msvc 0.53.0",
2431
- "windows_x86_64_gnu 0.53.0",
2432
- "windows_x86_64_gnullvm 0.53.0",
2433
- "windows_x86_64_msvc 0.53.0",
2434
- ]
2435
-
2436
2411
  [[package]]
2437
2412
  name = "windows_aarch64_gnullvm"
2438
2413
  version = "0.48.5"
@@ -2445,12 +2420,6 @@ version = "0.52.6"
2445
2420
  source = "registry+https://github.com/rust-lang/crates.io-index"
2446
2421
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2447
2422
 
2448
- [[package]]
2449
- name = "windows_aarch64_gnullvm"
2450
- version = "0.53.0"
2451
- source = "registry+https://github.com/rust-lang/crates.io-index"
2452
- checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2453
-
2454
2423
  [[package]]
2455
2424
  name = "windows_aarch64_msvc"
2456
2425
  version = "0.48.5"
@@ -2463,12 +2432,6 @@ version = "0.52.6"
2463
2432
  source = "registry+https://github.com/rust-lang/crates.io-index"
2464
2433
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2465
2434
 
2466
- [[package]]
2467
- name = "windows_aarch64_msvc"
2468
- version = "0.53.0"
2469
- source = "registry+https://github.com/rust-lang/crates.io-index"
2470
- checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2471
-
2472
2435
  [[package]]
2473
2436
  name = "windows_i686_gnu"
2474
2437
  version = "0.48.5"
@@ -2481,24 +2444,12 @@ version = "0.52.6"
2481
2444
  source = "registry+https://github.com/rust-lang/crates.io-index"
2482
2445
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2483
2446
 
2484
- [[package]]
2485
- name = "windows_i686_gnu"
2486
- version = "0.53.0"
2487
- source = "registry+https://github.com/rust-lang/crates.io-index"
2488
- checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2489
-
2490
2447
  [[package]]
2491
2448
  name = "windows_i686_gnullvm"
2492
2449
  version = "0.52.6"
2493
2450
  source = "registry+https://github.com/rust-lang/crates.io-index"
2494
2451
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2495
2452
 
2496
- [[package]]
2497
- name = "windows_i686_gnullvm"
2498
- version = "0.53.0"
2499
- source = "registry+https://github.com/rust-lang/crates.io-index"
2500
- checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2501
-
2502
2453
  [[package]]
2503
2454
  name = "windows_i686_msvc"
2504
2455
  version = "0.48.5"
@@ -2511,12 +2462,6 @@ version = "0.52.6"
2511
2462
  source = "registry+https://github.com/rust-lang/crates.io-index"
2512
2463
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2513
2464
 
2514
- [[package]]
2515
- name = "windows_i686_msvc"
2516
- version = "0.53.0"
2517
- source = "registry+https://github.com/rust-lang/crates.io-index"
2518
- checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2519
-
2520
2465
  [[package]]
2521
2466
  name = "windows_x86_64_gnu"
2522
2467
  version = "0.48.5"
@@ -2529,12 +2474,6 @@ version = "0.52.6"
2529
2474
  source = "registry+https://github.com/rust-lang/crates.io-index"
2530
2475
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2531
2476
 
2532
- [[package]]
2533
- name = "windows_x86_64_gnu"
2534
- version = "0.53.0"
2535
- source = "registry+https://github.com/rust-lang/crates.io-index"
2536
- checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2537
-
2538
2477
  [[package]]
2539
2478
  name = "windows_x86_64_gnullvm"
2540
2479
  version = "0.48.5"
@@ -2547,12 +2486,6 @@ version = "0.52.6"
2547
2486
  source = "registry+https://github.com/rust-lang/crates.io-index"
2548
2487
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2549
2488
 
2550
- [[package]]
2551
- name = "windows_x86_64_gnullvm"
2552
- version = "0.53.0"
2553
- source = "registry+https://github.com/rust-lang/crates.io-index"
2554
- checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2555
-
2556
2489
  [[package]]
2557
2490
  name = "windows_x86_64_msvc"
2558
2491
  version = "0.48.5"
@@ -2565,17 +2498,11 @@ version = "0.52.6"
2565
2498
  source = "registry+https://github.com/rust-lang/crates.io-index"
2566
2499
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2567
2500
 
2568
- [[package]]
2569
- name = "windows_x86_64_msvc"
2570
- version = "0.53.0"
2571
- source = "registry+https://github.com/rust-lang/crates.io-index"
2572
- checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2573
-
2574
2501
  [[package]]
2575
2502
  name = "winnow"
2576
- version = "0.7.12"
2503
+ version = "0.7.11"
2577
2504
  source = "registry+https://github.com/rust-lang/crates.io-index"
2578
- checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
2505
+ checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
2579
2506
  dependencies = [
2580
2507
  "memchr",
2581
2508
  ]