simple-agents-py 0.1.0__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.
- simple_agents_py-0.1.0/Cargo.lock +3174 -0
- simple_agents_py-0.1.0/Cargo.toml +27 -0
- simple_agents_py-0.1.0/PKG-INFO +55 -0
- simple_agents_py-0.1.0/README.md +39 -0
- simple_agents_py-0.1.0/crates/simple-agents-cache/Cargo.toml +16 -0
- simple_agents_py-0.1.0/crates/simple-agents-cache/src/lib.rs +12 -0
- simple_agents_py-0.1.0/crates/simple-agents-cache/src/memory.rs +293 -0
- simple_agents_py-0.1.0/crates/simple-agents-cache/src/noop.rs +97 -0
- simple_agents_py-0.1.0/crates/simple-agents-core/Cargo.toml +23 -0
- simple_agents_py-0.1.0/crates/simple-agents-core/README.md +118 -0
- simple_agents_py-0.1.0/crates/simple-agents-core/examples/basic_client.rs +55 -0
- simple_agents_py-0.1.0/crates/simple-agents-core/src/client.rs +401 -0
- simple_agents_py-0.1.0/crates/simple-agents-core/src/healing.rs +73 -0
- simple_agents_py-0.1.0/crates/simple-agents-core/src/lib.rs +72 -0
- simple_agents_py-0.1.0/crates/simple-agents-core/src/middleware.rs +48 -0
- simple_agents_py-0.1.0/crates/simple-agents-core/src/routing.rs +91 -0
- simple_agents_py-0.1.0/crates/simple-agents-core/tests/client_integration.rs +204 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/Cargo.toml +43 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/README.md +227 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/benches/parser_benchmarks.rs +320 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/examples/basic_healing.rs +85 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/examples/coercion_demo.rs +232 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/examples/streaming_annotations.rs +142 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/examples/streaming_partial_types.rs +133 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/src/coercion.rs +834 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/src/lib.rs +95 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/src/parser.rs +1134 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/src/schema.rs +391 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/src/streaming.rs +439 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/src/string_utils.rs +267 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/tests/parser_tests.rs +714 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/tests/property_tests.rs +243 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/tests/stream_annotations_tests.rs +192 -0
- simple_agents_py-0.1.0/crates/simple-agents-healing/tests/streaming_tests.rs +302 -0
- simple_agents_py-0.1.0/crates/simple-agents-macros/Cargo.toml +26 -0
- simple_agents_py-0.1.0/crates/simple-agents-macros/README.md +100 -0
- simple_agents_py-0.1.0/crates/simple-agents-macros/src/lib.rs +104 -0
- simple_agents_py-0.1.0/crates/simple-agents-macros/src/partial.rs +153 -0
- simple_agents_py-0.1.0/crates/simple-agents-macros/tests/partial_type_tests.rs +254 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/Cargo.toml +38 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/README.md +107 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/anthropic_basic.rs +81 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/cache_usage.rs +132 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/custom_api.rs +1003 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/openai_basic.rs +80 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/openrouter_basic.rs +89 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/retry_demo.rs +105 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/streaming.rs +99 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/streaming_with_healing.rs +226 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/test_local_api.rs +71 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/examples/test_reqwest.rs +32 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/run_integration_tests.sh +93 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/anthropic/error.rs +151 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/anthropic/mod.rs +573 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/anthropic/models.rs +197 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/anthropic/streaming.rs +443 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/common/error.rs +176 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/common/http_client.rs +124 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/common/mod.rs +7 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/lib.rs +54 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/metrics.rs +241 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/openai/error.rs +157 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/openai/mod.rs +534 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/openai/models.rs +244 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/openai/streaming.rs +230 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/openrouter/mod.rs +438 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/rate_limit.rs +277 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/retry.rs +220 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/src/utils.rs +69 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/tests/README.md +124 -0
- simple_agents_py-0.1.0/crates/simple-agents-providers/tests/openai_integration.rs +275 -0
- simple_agents_py-0.1.0/crates/simple-agents-py/Cargo.toml +18 -0
- simple_agents_py-0.1.0/crates/simple-agents-py/README.md +39 -0
- simple_agents_py-0.1.0/crates/simple-agents-py/src/lib.rs +105 -0
- simple_agents_py-0.1.0/crates/simple-agents-py/tests/test_client.py +18 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/Cargo.toml +18 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/examples/round_robin_router.rs +76 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/src/circuit_breaker.rs +219 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/src/cost.rs +259 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/src/fallback.rs +236 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/src/health.rs +148 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/src/latency.rs +299 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/src/lib.rs +20 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/src/retry.rs +185 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/src/round_robin.rs +140 -0
- simple_agents_py-0.1.0/crates/simple-agents-router/tests/health_tracker_integration.rs +20 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/Cargo.toml +22 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/README.md +238 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/TEST_GUIDE.md +232 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/TODO.md +590 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/examples/basic_usage.rs +248 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/examples/mock_provider.rs +182 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/cache.rs +407 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/coercion.rs +346 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/config.rs +440 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/error.rs +305 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/lib.rs +205 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/message.rs +205 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/provider.rs +443 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/request.rs +456 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/response.rs +285 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/router.rs +265 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/src/validation.rs +261 -0
- simple_agents_py-0.1.0/crates/simple-agents-types/tests/integration_test.rs +323 -0
- simple_agents_py-0.1.0/pyproject.toml +29 -0
|
@@ -0,0 +1,3174 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "aho-corasick"
|
|
19
|
+
version = "1.1.4"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"memchr",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anes"
|
|
28
|
+
version = "0.1.6"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anstream"
|
|
34
|
+
version = "0.6.21"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"anstyle",
|
|
39
|
+
"anstyle-parse",
|
|
40
|
+
"anstyle-query",
|
|
41
|
+
"anstyle-wincon",
|
|
42
|
+
"colorchoice",
|
|
43
|
+
"is_terminal_polyfill",
|
|
44
|
+
"utf8parse",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "anstyle"
|
|
49
|
+
version = "1.0.13"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstyle-parse"
|
|
55
|
+
version = "0.2.7"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"utf8parse",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "anstyle-query"
|
|
64
|
+
version = "1.1.5"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"windows-sys 0.61.2",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "anstyle-wincon"
|
|
73
|
+
version = "3.0.11"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"anstyle",
|
|
78
|
+
"once_cell_polyfill",
|
|
79
|
+
"windows-sys 0.61.2",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "arrayref"
|
|
84
|
+
version = "0.3.9"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "arrayvec"
|
|
90
|
+
version = "0.7.6"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "async-trait"
|
|
96
|
+
version = "0.1.89"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"proc-macro2",
|
|
101
|
+
"quote",
|
|
102
|
+
"syn",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "atomic-waker"
|
|
107
|
+
version = "1.1.2"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "autocfg"
|
|
113
|
+
version = "1.5.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "aws-lc-rs"
|
|
119
|
+
version = "1.15.3"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "e84ce723ab67259cfeb9877c6a639ee9eb7a27b28123abd71db7f0d5d0cc9d86"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"aws-lc-sys",
|
|
124
|
+
"zeroize",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "aws-lc-sys"
|
|
129
|
+
version = "0.36.0"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "43a442ece363113bd4bd4c8b18977a7798dd4d3c3383f34fb61936960e8f4ad8"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"cc",
|
|
134
|
+
"cmake",
|
|
135
|
+
"dunce",
|
|
136
|
+
"fs_extra",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "base64"
|
|
141
|
+
version = "0.22.1"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "bit-set"
|
|
147
|
+
version = "0.8.0"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"bit-vec",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "bit-vec"
|
|
156
|
+
version = "0.8.0"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "bitflags"
|
|
162
|
+
version = "2.10.0"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "blake3"
|
|
168
|
+
version = "1.8.3"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"arrayref",
|
|
173
|
+
"arrayvec",
|
|
174
|
+
"cc",
|
|
175
|
+
"cfg-if",
|
|
176
|
+
"constant_time_eq",
|
|
177
|
+
"cpufeatures",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "bumpalo"
|
|
182
|
+
version = "3.19.1"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "bytes"
|
|
188
|
+
version = "1.11.0"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "cast"
|
|
194
|
+
version = "0.3.0"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "cc"
|
|
200
|
+
version = "1.2.53"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"find-msvc-tools",
|
|
205
|
+
"jobserver",
|
|
206
|
+
"libc",
|
|
207
|
+
"shlex",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "cfg-if"
|
|
212
|
+
version = "1.0.4"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "ciborium"
|
|
218
|
+
version = "0.2.2"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"ciborium-io",
|
|
223
|
+
"ciborium-ll",
|
|
224
|
+
"serde",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "ciborium-io"
|
|
229
|
+
version = "0.2.2"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "ciborium-ll"
|
|
235
|
+
version = "0.2.2"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"ciborium-io",
|
|
240
|
+
"half",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "clap"
|
|
245
|
+
version = "4.5.54"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"clap_builder",
|
|
250
|
+
"clap_derive",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "clap_builder"
|
|
255
|
+
version = "4.5.54"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"anstream",
|
|
260
|
+
"anstyle",
|
|
261
|
+
"clap_lex",
|
|
262
|
+
"strsim",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "clap_derive"
|
|
267
|
+
version = "4.5.49"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"heck",
|
|
272
|
+
"proc-macro2",
|
|
273
|
+
"quote",
|
|
274
|
+
"syn",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "clap_lex"
|
|
279
|
+
version = "0.7.7"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "cmake"
|
|
285
|
+
version = "0.1.57"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"cc",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "colorchoice"
|
|
294
|
+
version = "1.0.4"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "constant_time_eq"
|
|
300
|
+
version = "0.4.2"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "convert_case"
|
|
306
|
+
version = "0.6.0"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"unicode-segmentation",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "core-foundation"
|
|
315
|
+
version = "0.9.4"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"core-foundation-sys",
|
|
320
|
+
"libc",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "core-foundation"
|
|
325
|
+
version = "0.10.1"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"core-foundation-sys",
|
|
330
|
+
"libc",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "core-foundation-sys"
|
|
335
|
+
version = "0.8.7"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "cpufeatures"
|
|
341
|
+
version = "0.2.17"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"libc",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "criterion"
|
|
350
|
+
version = "0.5.1"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"anes",
|
|
355
|
+
"cast",
|
|
356
|
+
"ciborium",
|
|
357
|
+
"clap",
|
|
358
|
+
"criterion-plot",
|
|
359
|
+
"is-terminal",
|
|
360
|
+
"itertools",
|
|
361
|
+
"num-traits",
|
|
362
|
+
"once_cell",
|
|
363
|
+
"oorandom",
|
|
364
|
+
"plotters",
|
|
365
|
+
"rayon",
|
|
366
|
+
"regex",
|
|
367
|
+
"serde",
|
|
368
|
+
"serde_derive",
|
|
369
|
+
"serde_json",
|
|
370
|
+
"tinytemplate",
|
|
371
|
+
"walkdir",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "criterion-plot"
|
|
376
|
+
version = "0.5.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"cast",
|
|
381
|
+
"itertools",
|
|
382
|
+
]
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "crossbeam-deque"
|
|
386
|
+
version = "0.8.6"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"crossbeam-epoch",
|
|
391
|
+
"crossbeam-utils",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "crossbeam-epoch"
|
|
396
|
+
version = "0.9.18"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"crossbeam-utils",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "crossbeam-utils"
|
|
405
|
+
version = "0.8.21"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "crunchy"
|
|
411
|
+
version = "0.2.4"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "ctor"
|
|
417
|
+
version = "0.2.9"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"quote",
|
|
422
|
+
"syn",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "dashmap"
|
|
427
|
+
version = "5.5.3"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"cfg-if",
|
|
432
|
+
"hashbrown 0.14.5",
|
|
433
|
+
"lock_api",
|
|
434
|
+
"once_cell",
|
|
435
|
+
"parking_lot_core",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "displaydoc"
|
|
440
|
+
version = "0.2.5"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"proc-macro2",
|
|
445
|
+
"quote",
|
|
446
|
+
"syn",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "dotenv"
|
|
451
|
+
version = "0.15.0"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "dunce"
|
|
457
|
+
version = "1.0.5"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "either"
|
|
463
|
+
version = "1.15.0"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "encoding_rs"
|
|
469
|
+
version = "0.8.35"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"cfg-if",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "equivalent"
|
|
478
|
+
version = "1.0.2"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "errno"
|
|
484
|
+
version = "0.3.14"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"libc",
|
|
489
|
+
"windows-sys 0.61.2",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "fastrand"
|
|
494
|
+
version = "2.3.0"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "find-msvc-tools"
|
|
500
|
+
version = "0.1.8"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "fnv"
|
|
506
|
+
version = "1.0.7"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "foreign-types"
|
|
512
|
+
version = "0.3.2"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"foreign-types-shared",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "foreign-types-shared"
|
|
521
|
+
version = "0.1.1"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "form_urlencoded"
|
|
527
|
+
version = "1.2.2"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"percent-encoding",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "fs_extra"
|
|
536
|
+
version = "1.3.0"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "futures"
|
|
542
|
+
version = "0.3.31"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"futures-channel",
|
|
547
|
+
"futures-core",
|
|
548
|
+
"futures-executor",
|
|
549
|
+
"futures-io",
|
|
550
|
+
"futures-sink",
|
|
551
|
+
"futures-task",
|
|
552
|
+
"futures-util",
|
|
553
|
+
]
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "futures-channel"
|
|
557
|
+
version = "0.3.31"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
560
|
+
dependencies = [
|
|
561
|
+
"futures-core",
|
|
562
|
+
"futures-sink",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "futures-core"
|
|
567
|
+
version = "0.3.31"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "futures-executor"
|
|
573
|
+
version = "0.3.31"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
576
|
+
dependencies = [
|
|
577
|
+
"futures-core",
|
|
578
|
+
"futures-task",
|
|
579
|
+
"futures-util",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "futures-io"
|
|
584
|
+
version = "0.3.31"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "futures-macro"
|
|
590
|
+
version = "0.3.31"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"proc-macro2",
|
|
595
|
+
"quote",
|
|
596
|
+
"syn",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "futures-sink"
|
|
601
|
+
version = "0.3.31"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "futures-task"
|
|
607
|
+
version = "0.3.31"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "futures-timer"
|
|
613
|
+
version = "3.0.3"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "futures-util"
|
|
619
|
+
version = "0.3.31"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"futures-channel",
|
|
624
|
+
"futures-core",
|
|
625
|
+
"futures-io",
|
|
626
|
+
"futures-macro",
|
|
627
|
+
"futures-sink",
|
|
628
|
+
"futures-task",
|
|
629
|
+
"memchr",
|
|
630
|
+
"pin-project-lite",
|
|
631
|
+
"pin-utils",
|
|
632
|
+
"slab",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "getrandom"
|
|
637
|
+
version = "0.2.17"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"cfg-if",
|
|
642
|
+
"libc",
|
|
643
|
+
"wasi",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "getrandom"
|
|
648
|
+
version = "0.3.4"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"cfg-if",
|
|
653
|
+
"libc",
|
|
654
|
+
"r-efi",
|
|
655
|
+
"wasip2",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "governor"
|
|
660
|
+
version = "0.6.3"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"cfg-if",
|
|
665
|
+
"dashmap",
|
|
666
|
+
"futures",
|
|
667
|
+
"futures-timer",
|
|
668
|
+
"no-std-compat",
|
|
669
|
+
"nonzero_ext",
|
|
670
|
+
"parking_lot",
|
|
671
|
+
"portable-atomic",
|
|
672
|
+
"quanta",
|
|
673
|
+
"rand 0.8.5",
|
|
674
|
+
"smallvec",
|
|
675
|
+
"spinning_top",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "h2"
|
|
680
|
+
version = "0.4.13"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"atomic-waker",
|
|
685
|
+
"bytes",
|
|
686
|
+
"fnv",
|
|
687
|
+
"futures-core",
|
|
688
|
+
"futures-sink",
|
|
689
|
+
"http",
|
|
690
|
+
"indexmap",
|
|
691
|
+
"slab",
|
|
692
|
+
"tokio",
|
|
693
|
+
"tokio-util",
|
|
694
|
+
"tracing",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "half"
|
|
699
|
+
version = "2.7.1"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
702
|
+
dependencies = [
|
|
703
|
+
"cfg-if",
|
|
704
|
+
"crunchy",
|
|
705
|
+
"zerocopy",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "hashbrown"
|
|
710
|
+
version = "0.14.5"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"ahash",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "hashbrown"
|
|
719
|
+
version = "0.16.1"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "heck"
|
|
725
|
+
version = "0.5.0"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "hermit-abi"
|
|
731
|
+
version = "0.5.2"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "http"
|
|
737
|
+
version = "1.4.0"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"bytes",
|
|
742
|
+
"itoa",
|
|
743
|
+
]
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "http-body"
|
|
747
|
+
version = "1.0.1"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
750
|
+
dependencies = [
|
|
751
|
+
"bytes",
|
|
752
|
+
"http",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "http-body-util"
|
|
757
|
+
version = "0.1.3"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"bytes",
|
|
762
|
+
"futures-core",
|
|
763
|
+
"http",
|
|
764
|
+
"http-body",
|
|
765
|
+
"pin-project-lite",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "httparse"
|
|
770
|
+
version = "1.10.1"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "httpdate"
|
|
776
|
+
version = "1.0.3"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "hyper"
|
|
782
|
+
version = "1.8.1"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"atomic-waker",
|
|
787
|
+
"bytes",
|
|
788
|
+
"futures-channel",
|
|
789
|
+
"futures-core",
|
|
790
|
+
"h2",
|
|
791
|
+
"http",
|
|
792
|
+
"http-body",
|
|
793
|
+
"httparse",
|
|
794
|
+
"httpdate",
|
|
795
|
+
"itoa",
|
|
796
|
+
"pin-project-lite",
|
|
797
|
+
"pin-utils",
|
|
798
|
+
"smallvec",
|
|
799
|
+
"tokio",
|
|
800
|
+
"want",
|
|
801
|
+
]
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "hyper-rustls"
|
|
805
|
+
version = "0.27.7"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
808
|
+
dependencies = [
|
|
809
|
+
"http",
|
|
810
|
+
"hyper",
|
|
811
|
+
"hyper-util",
|
|
812
|
+
"log",
|
|
813
|
+
"rustls",
|
|
814
|
+
"rustls-native-certs",
|
|
815
|
+
"rustls-pki-types",
|
|
816
|
+
"tokio",
|
|
817
|
+
"tokio-rustls",
|
|
818
|
+
"tower-service",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "hyper-tls"
|
|
823
|
+
version = "0.6.0"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"bytes",
|
|
828
|
+
"http-body-util",
|
|
829
|
+
"hyper",
|
|
830
|
+
"hyper-util",
|
|
831
|
+
"native-tls",
|
|
832
|
+
"tokio",
|
|
833
|
+
"tokio-native-tls",
|
|
834
|
+
"tower-service",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "hyper-util"
|
|
839
|
+
version = "0.1.19"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
842
|
+
dependencies = [
|
|
843
|
+
"base64",
|
|
844
|
+
"bytes",
|
|
845
|
+
"futures-channel",
|
|
846
|
+
"futures-core",
|
|
847
|
+
"futures-util",
|
|
848
|
+
"http",
|
|
849
|
+
"http-body",
|
|
850
|
+
"hyper",
|
|
851
|
+
"ipnet",
|
|
852
|
+
"libc",
|
|
853
|
+
"percent-encoding",
|
|
854
|
+
"pin-project-lite",
|
|
855
|
+
"socket2",
|
|
856
|
+
"system-configuration",
|
|
857
|
+
"tokio",
|
|
858
|
+
"tower-service",
|
|
859
|
+
"tracing",
|
|
860
|
+
"windows-registry",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "icu_collections"
|
|
865
|
+
version = "2.1.1"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"displaydoc",
|
|
870
|
+
"potential_utf",
|
|
871
|
+
"yoke",
|
|
872
|
+
"zerofrom",
|
|
873
|
+
"zerovec",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "icu_locale_core"
|
|
878
|
+
version = "2.1.1"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"displaydoc",
|
|
883
|
+
"litemap",
|
|
884
|
+
"tinystr",
|
|
885
|
+
"writeable",
|
|
886
|
+
"zerovec",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "icu_normalizer"
|
|
891
|
+
version = "2.1.1"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"icu_collections",
|
|
896
|
+
"icu_normalizer_data",
|
|
897
|
+
"icu_properties",
|
|
898
|
+
"icu_provider",
|
|
899
|
+
"smallvec",
|
|
900
|
+
"zerovec",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "icu_normalizer_data"
|
|
905
|
+
version = "2.1.1"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "icu_properties"
|
|
911
|
+
version = "2.1.2"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"icu_collections",
|
|
916
|
+
"icu_locale_core",
|
|
917
|
+
"icu_properties_data",
|
|
918
|
+
"icu_provider",
|
|
919
|
+
"zerotrie",
|
|
920
|
+
"zerovec",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "icu_properties_data"
|
|
925
|
+
version = "2.1.2"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "icu_provider"
|
|
931
|
+
version = "2.1.1"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"displaydoc",
|
|
936
|
+
"icu_locale_core",
|
|
937
|
+
"writeable",
|
|
938
|
+
"yoke",
|
|
939
|
+
"zerofrom",
|
|
940
|
+
"zerotrie",
|
|
941
|
+
"zerovec",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "idna"
|
|
946
|
+
version = "1.1.0"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"idna_adapter",
|
|
951
|
+
"smallvec",
|
|
952
|
+
"utf8_iter",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "idna_adapter"
|
|
957
|
+
version = "1.2.1"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"icu_normalizer",
|
|
962
|
+
"icu_properties",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "indexmap"
|
|
967
|
+
version = "2.13.0"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"equivalent",
|
|
972
|
+
"hashbrown 0.16.1",
|
|
973
|
+
]
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "indoc"
|
|
977
|
+
version = "2.0.7"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"rustversion",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "ipnet"
|
|
986
|
+
version = "2.11.0"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "iri-string"
|
|
992
|
+
version = "0.7.10"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
995
|
+
dependencies = [
|
|
996
|
+
"memchr",
|
|
997
|
+
"serde",
|
|
998
|
+
]
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "is-terminal"
|
|
1002
|
+
version = "0.4.17"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"hermit-abi",
|
|
1007
|
+
"libc",
|
|
1008
|
+
"windows-sys 0.61.2",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "is_terminal_polyfill"
|
|
1013
|
+
version = "1.70.2"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "itertools"
|
|
1019
|
+
version = "0.10.5"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"either",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "itoa"
|
|
1028
|
+
version = "1.0.17"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "jobserver"
|
|
1034
|
+
version = "0.1.34"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"getrandom 0.3.4",
|
|
1039
|
+
"libc",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "js-sys"
|
|
1044
|
+
version = "0.3.85"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
1047
|
+
dependencies = [
|
|
1048
|
+
"once_cell",
|
|
1049
|
+
"wasm-bindgen",
|
|
1050
|
+
]
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "lazy_static"
|
|
1054
|
+
version = "1.5.0"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "libc"
|
|
1060
|
+
version = "0.2.180"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "libloading"
|
|
1066
|
+
version = "0.8.9"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"cfg-if",
|
|
1071
|
+
"windows-link",
|
|
1072
|
+
]
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "linux-raw-sys"
|
|
1076
|
+
version = "0.11.0"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1079
|
+
|
|
1080
|
+
[[package]]
|
|
1081
|
+
name = "litemap"
|
|
1082
|
+
version = "0.8.1"
|
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "lock_api"
|
|
1088
|
+
version = "0.4.14"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"scopeguard",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "log"
|
|
1097
|
+
version = "0.4.29"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "memchr"
|
|
1103
|
+
version = "2.7.6"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "memoffset"
|
|
1109
|
+
version = "0.9.1"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"autocfg",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "metrics"
|
|
1118
|
+
version = "0.23.1"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "3045b4193fbdc5b5681f32f11070da9be3609f189a79f3390706d42587f46bb5"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"ahash",
|
|
1123
|
+
"portable-atomic",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "metrics-exporter-prometheus"
|
|
1128
|
+
version = "0.15.3"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "b4f0c8427b39666bf970460908b213ec09b3b350f20c0c2eabcbba51704a08e6"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"base64",
|
|
1133
|
+
"http-body-util",
|
|
1134
|
+
"hyper",
|
|
1135
|
+
"hyper-rustls",
|
|
1136
|
+
"hyper-util",
|
|
1137
|
+
"indexmap",
|
|
1138
|
+
"ipnet",
|
|
1139
|
+
"metrics",
|
|
1140
|
+
"metrics-util",
|
|
1141
|
+
"quanta",
|
|
1142
|
+
"thiserror 1.0.69",
|
|
1143
|
+
"tokio",
|
|
1144
|
+
"tracing",
|
|
1145
|
+
]
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "metrics-util"
|
|
1149
|
+
version = "0.17.0"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "4259040465c955f9f2f1a4a8a16dc46726169bca0f88e8fb2dbeced487c3e828"
|
|
1152
|
+
dependencies = [
|
|
1153
|
+
"crossbeam-epoch",
|
|
1154
|
+
"crossbeam-utils",
|
|
1155
|
+
"hashbrown 0.14.5",
|
|
1156
|
+
"metrics",
|
|
1157
|
+
"num_cpus",
|
|
1158
|
+
"quanta",
|
|
1159
|
+
"sketches-ddsketch",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "mime"
|
|
1164
|
+
version = "0.3.17"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "mio"
|
|
1170
|
+
version = "1.1.1"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"libc",
|
|
1175
|
+
"wasi",
|
|
1176
|
+
"windows-sys 0.61.2",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "napi"
|
|
1181
|
+
version = "2.16.17"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"bitflags",
|
|
1186
|
+
"ctor",
|
|
1187
|
+
"napi-derive",
|
|
1188
|
+
"napi-sys",
|
|
1189
|
+
"once_cell",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "napi-derive"
|
|
1194
|
+
version = "2.16.13"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"cfg-if",
|
|
1199
|
+
"convert_case",
|
|
1200
|
+
"napi-derive-backend",
|
|
1201
|
+
"proc-macro2",
|
|
1202
|
+
"quote",
|
|
1203
|
+
"syn",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "napi-derive-backend"
|
|
1208
|
+
version = "1.0.75"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
1211
|
+
dependencies = [
|
|
1212
|
+
"convert_case",
|
|
1213
|
+
"once_cell",
|
|
1214
|
+
"proc-macro2",
|
|
1215
|
+
"quote",
|
|
1216
|
+
"regex",
|
|
1217
|
+
"semver",
|
|
1218
|
+
"syn",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "napi-sys"
|
|
1223
|
+
version = "2.4.0"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
1226
|
+
dependencies = [
|
|
1227
|
+
"libloading",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "native-tls"
|
|
1232
|
+
version = "0.2.14"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"libc",
|
|
1237
|
+
"log",
|
|
1238
|
+
"openssl",
|
|
1239
|
+
"openssl-probe 0.1.6",
|
|
1240
|
+
"openssl-sys",
|
|
1241
|
+
"schannel",
|
|
1242
|
+
"security-framework 2.11.1",
|
|
1243
|
+
"security-framework-sys",
|
|
1244
|
+
"tempfile",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "no-std-compat"
|
|
1249
|
+
version = "0.4.1"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "nonzero_ext"
|
|
1255
|
+
version = "0.3.0"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "nu-ansi-term"
|
|
1261
|
+
version = "0.50.3"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"windows-sys 0.61.2",
|
|
1266
|
+
]
|
|
1267
|
+
|
|
1268
|
+
[[package]]
|
|
1269
|
+
name = "num-traits"
|
|
1270
|
+
version = "0.2.19"
|
|
1271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1273
|
+
dependencies = [
|
|
1274
|
+
"autocfg",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "num_cpus"
|
|
1279
|
+
version = "1.17.0"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
1282
|
+
dependencies = [
|
|
1283
|
+
"hermit-abi",
|
|
1284
|
+
"libc",
|
|
1285
|
+
]
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "once_cell"
|
|
1289
|
+
version = "1.21.3"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "once_cell_polyfill"
|
|
1295
|
+
version = "1.70.2"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "oorandom"
|
|
1301
|
+
version = "11.1.5"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "openssl"
|
|
1307
|
+
version = "0.10.75"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"bitflags",
|
|
1312
|
+
"cfg-if",
|
|
1313
|
+
"foreign-types",
|
|
1314
|
+
"libc",
|
|
1315
|
+
"once_cell",
|
|
1316
|
+
"openssl-macros",
|
|
1317
|
+
"openssl-sys",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "openssl-macros"
|
|
1322
|
+
version = "0.1.1"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"proc-macro2",
|
|
1327
|
+
"quote",
|
|
1328
|
+
"syn",
|
|
1329
|
+
]
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "openssl-probe"
|
|
1333
|
+
version = "0.1.6"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1336
|
+
|
|
1337
|
+
[[package]]
|
|
1338
|
+
name = "openssl-probe"
|
|
1339
|
+
version = "0.2.0"
|
|
1340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
+
checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "openssl-sys"
|
|
1345
|
+
version = "0.9.111"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
|
|
1348
|
+
dependencies = [
|
|
1349
|
+
"cc",
|
|
1350
|
+
"libc",
|
|
1351
|
+
"pkg-config",
|
|
1352
|
+
"vcpkg",
|
|
1353
|
+
]
|
|
1354
|
+
|
|
1355
|
+
[[package]]
|
|
1356
|
+
name = "parking_lot"
|
|
1357
|
+
version = "0.12.5"
|
|
1358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1360
|
+
dependencies = [
|
|
1361
|
+
"lock_api",
|
|
1362
|
+
"parking_lot_core",
|
|
1363
|
+
]
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "parking_lot_core"
|
|
1367
|
+
version = "0.9.12"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"cfg-if",
|
|
1372
|
+
"libc",
|
|
1373
|
+
"redox_syscall",
|
|
1374
|
+
"smallvec",
|
|
1375
|
+
"windows-link",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "percent-encoding"
|
|
1380
|
+
version = "2.3.2"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "pin-project-lite"
|
|
1386
|
+
version = "0.2.16"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "pin-utils"
|
|
1392
|
+
version = "0.1.0"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1395
|
+
|
|
1396
|
+
[[package]]
|
|
1397
|
+
name = "pkg-config"
|
|
1398
|
+
version = "0.3.32"
|
|
1399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "plotters"
|
|
1404
|
+
version = "0.3.7"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1407
|
+
dependencies = [
|
|
1408
|
+
"num-traits",
|
|
1409
|
+
"plotters-backend",
|
|
1410
|
+
"plotters-svg",
|
|
1411
|
+
"wasm-bindgen",
|
|
1412
|
+
"web-sys",
|
|
1413
|
+
]
|
|
1414
|
+
|
|
1415
|
+
[[package]]
|
|
1416
|
+
name = "plotters-backend"
|
|
1417
|
+
version = "0.3.7"
|
|
1418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "plotters-svg"
|
|
1423
|
+
version = "0.3.7"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"plotters-backend",
|
|
1428
|
+
]
|
|
1429
|
+
|
|
1430
|
+
[[package]]
|
|
1431
|
+
name = "portable-atomic"
|
|
1432
|
+
version = "1.13.0"
|
|
1433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1434
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "potential_utf"
|
|
1438
|
+
version = "0.1.4"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1441
|
+
dependencies = [
|
|
1442
|
+
"zerovec",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "ppv-lite86"
|
|
1447
|
+
version = "0.2.21"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1450
|
+
dependencies = [
|
|
1451
|
+
"zerocopy",
|
|
1452
|
+
]
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "proc-macro2"
|
|
1456
|
+
version = "1.0.105"
|
|
1457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1458
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
1459
|
+
dependencies = [
|
|
1460
|
+
"unicode-ident",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "proptest"
|
|
1465
|
+
version = "1.9.0"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"bit-set",
|
|
1470
|
+
"bit-vec",
|
|
1471
|
+
"bitflags",
|
|
1472
|
+
"num-traits",
|
|
1473
|
+
"rand 0.9.2",
|
|
1474
|
+
"rand_chacha 0.9.0",
|
|
1475
|
+
"rand_xorshift",
|
|
1476
|
+
"regex-syntax",
|
|
1477
|
+
"rusty-fork",
|
|
1478
|
+
"tempfile",
|
|
1479
|
+
"unarray",
|
|
1480
|
+
]
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "pyo3"
|
|
1484
|
+
version = "0.22.6"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
1487
|
+
dependencies = [
|
|
1488
|
+
"cfg-if",
|
|
1489
|
+
"indoc",
|
|
1490
|
+
"libc",
|
|
1491
|
+
"memoffset",
|
|
1492
|
+
"once_cell",
|
|
1493
|
+
"portable-atomic",
|
|
1494
|
+
"pyo3-build-config",
|
|
1495
|
+
"pyo3-ffi",
|
|
1496
|
+
"pyo3-macros",
|
|
1497
|
+
"unindent",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "pyo3-build-config"
|
|
1502
|
+
version = "0.22.6"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
1505
|
+
dependencies = [
|
|
1506
|
+
"once_cell",
|
|
1507
|
+
"target-lexicon",
|
|
1508
|
+
]
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "pyo3-ffi"
|
|
1512
|
+
version = "0.22.6"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
1515
|
+
dependencies = [
|
|
1516
|
+
"libc",
|
|
1517
|
+
"pyo3-build-config",
|
|
1518
|
+
]
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "pyo3-macros"
|
|
1522
|
+
version = "0.22.6"
|
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
1525
|
+
dependencies = [
|
|
1526
|
+
"proc-macro2",
|
|
1527
|
+
"pyo3-macros-backend",
|
|
1528
|
+
"quote",
|
|
1529
|
+
"syn",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "pyo3-macros-backend"
|
|
1534
|
+
version = "0.22.6"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"heck",
|
|
1539
|
+
"proc-macro2",
|
|
1540
|
+
"pyo3-build-config",
|
|
1541
|
+
"quote",
|
|
1542
|
+
"syn",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "quanta"
|
|
1547
|
+
version = "0.12.6"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"crossbeam-utils",
|
|
1552
|
+
"libc",
|
|
1553
|
+
"once_cell",
|
|
1554
|
+
"raw-cpuid",
|
|
1555
|
+
"wasi",
|
|
1556
|
+
"web-sys",
|
|
1557
|
+
"winapi",
|
|
1558
|
+
]
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "quick-error"
|
|
1562
|
+
version = "1.2.3"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "quote"
|
|
1568
|
+
version = "1.0.43"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"proc-macro2",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "r-efi"
|
|
1577
|
+
version = "5.3.0"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1580
|
+
|
|
1581
|
+
[[package]]
|
|
1582
|
+
name = "rand"
|
|
1583
|
+
version = "0.8.5"
|
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1586
|
+
dependencies = [
|
|
1587
|
+
"libc",
|
|
1588
|
+
"rand_chacha 0.3.1",
|
|
1589
|
+
"rand_core 0.6.4",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "rand"
|
|
1594
|
+
version = "0.9.2"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1597
|
+
dependencies = [
|
|
1598
|
+
"rand_chacha 0.9.0",
|
|
1599
|
+
"rand_core 0.9.5",
|
|
1600
|
+
]
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "rand_chacha"
|
|
1604
|
+
version = "0.3.1"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1607
|
+
dependencies = [
|
|
1608
|
+
"ppv-lite86",
|
|
1609
|
+
"rand_core 0.6.4",
|
|
1610
|
+
]
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "rand_chacha"
|
|
1614
|
+
version = "0.9.0"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"ppv-lite86",
|
|
1619
|
+
"rand_core 0.9.5",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "rand_core"
|
|
1624
|
+
version = "0.6.4"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1627
|
+
dependencies = [
|
|
1628
|
+
"getrandom 0.2.17",
|
|
1629
|
+
]
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "rand_core"
|
|
1633
|
+
version = "0.9.5"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"getrandom 0.3.4",
|
|
1638
|
+
]
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "rand_xorshift"
|
|
1642
|
+
version = "0.4.0"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
1645
|
+
dependencies = [
|
|
1646
|
+
"rand_core 0.9.5",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "raw-cpuid"
|
|
1651
|
+
version = "11.6.0"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"bitflags",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "rayon"
|
|
1660
|
+
version = "1.11.0"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"either",
|
|
1665
|
+
"rayon-core",
|
|
1666
|
+
]
|
|
1667
|
+
|
|
1668
|
+
[[package]]
|
|
1669
|
+
name = "rayon-core"
|
|
1670
|
+
version = "1.13.0"
|
|
1671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1673
|
+
dependencies = [
|
|
1674
|
+
"crossbeam-deque",
|
|
1675
|
+
"crossbeam-utils",
|
|
1676
|
+
]
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "redox_syscall"
|
|
1680
|
+
version = "0.5.18"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"bitflags",
|
|
1685
|
+
]
|
|
1686
|
+
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "regex"
|
|
1689
|
+
version = "1.12.2"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"aho-corasick",
|
|
1694
|
+
"memchr",
|
|
1695
|
+
"regex-automata",
|
|
1696
|
+
"regex-syntax",
|
|
1697
|
+
]
|
|
1698
|
+
|
|
1699
|
+
[[package]]
|
|
1700
|
+
name = "regex-automata"
|
|
1701
|
+
version = "0.4.13"
|
|
1702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1704
|
+
dependencies = [
|
|
1705
|
+
"aho-corasick",
|
|
1706
|
+
"memchr",
|
|
1707
|
+
"regex-syntax",
|
|
1708
|
+
]
|
|
1709
|
+
|
|
1710
|
+
[[package]]
|
|
1711
|
+
name = "regex-syntax"
|
|
1712
|
+
version = "0.8.8"
|
|
1713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "reqwest"
|
|
1718
|
+
version = "0.12.28"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1721
|
+
dependencies = [
|
|
1722
|
+
"base64",
|
|
1723
|
+
"bytes",
|
|
1724
|
+
"encoding_rs",
|
|
1725
|
+
"futures-core",
|
|
1726
|
+
"futures-util",
|
|
1727
|
+
"h2",
|
|
1728
|
+
"http",
|
|
1729
|
+
"http-body",
|
|
1730
|
+
"http-body-util",
|
|
1731
|
+
"hyper",
|
|
1732
|
+
"hyper-rustls",
|
|
1733
|
+
"hyper-tls",
|
|
1734
|
+
"hyper-util",
|
|
1735
|
+
"js-sys",
|
|
1736
|
+
"log",
|
|
1737
|
+
"mime",
|
|
1738
|
+
"native-tls",
|
|
1739
|
+
"percent-encoding",
|
|
1740
|
+
"pin-project-lite",
|
|
1741
|
+
"rustls-pki-types",
|
|
1742
|
+
"serde",
|
|
1743
|
+
"serde_json",
|
|
1744
|
+
"serde_urlencoded",
|
|
1745
|
+
"sync_wrapper",
|
|
1746
|
+
"tokio",
|
|
1747
|
+
"tokio-native-tls",
|
|
1748
|
+
"tokio-util",
|
|
1749
|
+
"tower",
|
|
1750
|
+
"tower-http",
|
|
1751
|
+
"tower-service",
|
|
1752
|
+
"url",
|
|
1753
|
+
"wasm-bindgen",
|
|
1754
|
+
"wasm-bindgen-futures",
|
|
1755
|
+
"wasm-streams",
|
|
1756
|
+
"web-sys",
|
|
1757
|
+
]
|
|
1758
|
+
|
|
1759
|
+
[[package]]
|
|
1760
|
+
name = "ring"
|
|
1761
|
+
version = "0.17.14"
|
|
1762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1764
|
+
dependencies = [
|
|
1765
|
+
"cc",
|
|
1766
|
+
"cfg-if",
|
|
1767
|
+
"getrandom 0.2.17",
|
|
1768
|
+
"libc",
|
|
1769
|
+
"untrusted",
|
|
1770
|
+
"windows-sys 0.52.0",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "rustix"
|
|
1775
|
+
version = "1.1.3"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
1778
|
+
dependencies = [
|
|
1779
|
+
"bitflags",
|
|
1780
|
+
"errno",
|
|
1781
|
+
"libc",
|
|
1782
|
+
"linux-raw-sys",
|
|
1783
|
+
"windows-sys 0.61.2",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "rustls"
|
|
1788
|
+
version = "0.23.36"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
|
1791
|
+
dependencies = [
|
|
1792
|
+
"aws-lc-rs",
|
|
1793
|
+
"log",
|
|
1794
|
+
"once_cell",
|
|
1795
|
+
"rustls-pki-types",
|
|
1796
|
+
"rustls-webpki",
|
|
1797
|
+
"subtle",
|
|
1798
|
+
"zeroize",
|
|
1799
|
+
]
|
|
1800
|
+
|
|
1801
|
+
[[package]]
|
|
1802
|
+
name = "rustls-native-certs"
|
|
1803
|
+
version = "0.8.3"
|
|
1804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
1806
|
+
dependencies = [
|
|
1807
|
+
"openssl-probe 0.2.0",
|
|
1808
|
+
"rustls-pki-types",
|
|
1809
|
+
"schannel",
|
|
1810
|
+
"security-framework 3.5.1",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "rustls-pki-types"
|
|
1815
|
+
version = "1.14.0"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
1818
|
+
dependencies = [
|
|
1819
|
+
"zeroize",
|
|
1820
|
+
]
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "rustls-webpki"
|
|
1824
|
+
version = "0.103.9"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
1827
|
+
dependencies = [
|
|
1828
|
+
"aws-lc-rs",
|
|
1829
|
+
"ring",
|
|
1830
|
+
"rustls-pki-types",
|
|
1831
|
+
"untrusted",
|
|
1832
|
+
]
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "rustversion"
|
|
1836
|
+
version = "1.0.22"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1839
|
+
|
|
1840
|
+
[[package]]
|
|
1841
|
+
name = "rusty-fork"
|
|
1842
|
+
version = "0.3.1"
|
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
1845
|
+
dependencies = [
|
|
1846
|
+
"fnv",
|
|
1847
|
+
"quick-error",
|
|
1848
|
+
"tempfile",
|
|
1849
|
+
"wait-timeout",
|
|
1850
|
+
]
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "ryu"
|
|
1854
|
+
version = "1.0.22"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
1857
|
+
|
|
1858
|
+
[[package]]
|
|
1859
|
+
name = "same-file"
|
|
1860
|
+
version = "1.0.6"
|
|
1861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1863
|
+
dependencies = [
|
|
1864
|
+
"winapi-util",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "schannel"
|
|
1869
|
+
version = "0.1.28"
|
|
1870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
1872
|
+
dependencies = [
|
|
1873
|
+
"windows-sys 0.61.2",
|
|
1874
|
+
]
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "scopeguard"
|
|
1878
|
+
version = "1.2.0"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1881
|
+
|
|
1882
|
+
[[package]]
|
|
1883
|
+
name = "security-framework"
|
|
1884
|
+
version = "2.11.1"
|
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
1887
|
+
dependencies = [
|
|
1888
|
+
"bitflags",
|
|
1889
|
+
"core-foundation 0.9.4",
|
|
1890
|
+
"core-foundation-sys",
|
|
1891
|
+
"libc",
|
|
1892
|
+
"security-framework-sys",
|
|
1893
|
+
]
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "security-framework"
|
|
1897
|
+
version = "3.5.1"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"bitflags",
|
|
1902
|
+
"core-foundation 0.10.1",
|
|
1903
|
+
"core-foundation-sys",
|
|
1904
|
+
"libc",
|
|
1905
|
+
"security-framework-sys",
|
|
1906
|
+
]
|
|
1907
|
+
|
|
1908
|
+
[[package]]
|
|
1909
|
+
name = "security-framework-sys"
|
|
1910
|
+
version = "2.15.0"
|
|
1911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
1913
|
+
dependencies = [
|
|
1914
|
+
"core-foundation-sys",
|
|
1915
|
+
"libc",
|
|
1916
|
+
]
|
|
1917
|
+
|
|
1918
|
+
[[package]]
|
|
1919
|
+
name = "semver"
|
|
1920
|
+
version = "1.0.27"
|
|
1921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1923
|
+
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "serde"
|
|
1926
|
+
version = "1.0.228"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1929
|
+
dependencies = [
|
|
1930
|
+
"serde_core",
|
|
1931
|
+
"serde_derive",
|
|
1932
|
+
]
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "serde_core"
|
|
1936
|
+
version = "1.0.228"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1939
|
+
dependencies = [
|
|
1940
|
+
"serde_derive",
|
|
1941
|
+
]
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "serde_derive"
|
|
1945
|
+
version = "1.0.228"
|
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1948
|
+
dependencies = [
|
|
1949
|
+
"proc-macro2",
|
|
1950
|
+
"quote",
|
|
1951
|
+
"syn",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "serde_json"
|
|
1956
|
+
version = "1.0.149"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"itoa",
|
|
1961
|
+
"memchr",
|
|
1962
|
+
"serde",
|
|
1963
|
+
"serde_core",
|
|
1964
|
+
"zmij",
|
|
1965
|
+
]
|
|
1966
|
+
|
|
1967
|
+
[[package]]
|
|
1968
|
+
name = "serde_spanned"
|
|
1969
|
+
version = "0.6.9"
|
|
1970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
1972
|
+
dependencies = [
|
|
1973
|
+
"serde",
|
|
1974
|
+
]
|
|
1975
|
+
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "serde_urlencoded"
|
|
1978
|
+
version = "0.7.1"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1981
|
+
dependencies = [
|
|
1982
|
+
"form_urlencoded",
|
|
1983
|
+
"itoa",
|
|
1984
|
+
"ryu",
|
|
1985
|
+
"serde",
|
|
1986
|
+
]
|
|
1987
|
+
|
|
1988
|
+
[[package]]
|
|
1989
|
+
name = "serde_yaml"
|
|
1990
|
+
version = "0.9.34+deprecated"
|
|
1991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1993
|
+
dependencies = [
|
|
1994
|
+
"indexmap",
|
|
1995
|
+
"itoa",
|
|
1996
|
+
"ryu",
|
|
1997
|
+
"serde",
|
|
1998
|
+
"unsafe-libyaml",
|
|
1999
|
+
]
|
|
2000
|
+
|
|
2001
|
+
[[package]]
|
|
2002
|
+
name = "sharded-slab"
|
|
2003
|
+
version = "0.1.7"
|
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2006
|
+
dependencies = [
|
|
2007
|
+
"lazy_static",
|
|
2008
|
+
]
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "shlex"
|
|
2012
|
+
version = "1.3.0"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "signal-hook-registry"
|
|
2018
|
+
version = "1.4.8"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"errno",
|
|
2023
|
+
"libc",
|
|
2024
|
+
]
|
|
2025
|
+
|
|
2026
|
+
[[package]]
|
|
2027
|
+
name = "simple-agents-cache"
|
|
2028
|
+
version = "0.1.0"
|
|
2029
|
+
dependencies = [
|
|
2030
|
+
"async-trait",
|
|
2031
|
+
"simple-agents-types",
|
|
2032
|
+
"tokio",
|
|
2033
|
+
]
|
|
2034
|
+
|
|
2035
|
+
[[package]]
|
|
2036
|
+
name = "simple-agents-cli"
|
|
2037
|
+
version = "0.1.0"
|
|
2038
|
+
dependencies = [
|
|
2039
|
+
"clap",
|
|
2040
|
+
"serde",
|
|
2041
|
+
"serde_json",
|
|
2042
|
+
"serde_yaml",
|
|
2043
|
+
"simple-agents-core",
|
|
2044
|
+
"simple-agents-providers",
|
|
2045
|
+
"simple-agents-router",
|
|
2046
|
+
"simple-agents-types",
|
|
2047
|
+
"thiserror 1.0.69",
|
|
2048
|
+
"tokio",
|
|
2049
|
+
"toml",
|
|
2050
|
+
]
|
|
2051
|
+
|
|
2052
|
+
[[package]]
|
|
2053
|
+
name = "simple-agents-core"
|
|
2054
|
+
version = "0.1.0"
|
|
2055
|
+
dependencies = [
|
|
2056
|
+
"async-trait",
|
|
2057
|
+
"serde",
|
|
2058
|
+
"serde_json",
|
|
2059
|
+
"simple-agents-cache",
|
|
2060
|
+
"simple-agents-healing",
|
|
2061
|
+
"simple-agents-router",
|
|
2062
|
+
"simple-agents-types",
|
|
2063
|
+
"tokio",
|
|
2064
|
+
]
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "simple-agents-examples"
|
|
2068
|
+
version = "0.1.0"
|
|
2069
|
+
dependencies = [
|
|
2070
|
+
"dotenv",
|
|
2071
|
+
"futures-util",
|
|
2072
|
+
"serde_json",
|
|
2073
|
+
"simple-agents-healing",
|
|
2074
|
+
"simple-agents-providers",
|
|
2075
|
+
"simple-agents-types",
|
|
2076
|
+
"tokio",
|
|
2077
|
+
]
|
|
2078
|
+
|
|
2079
|
+
[[package]]
|
|
2080
|
+
name = "simple-agents-ffi"
|
|
2081
|
+
version = "0.1.0"
|
|
2082
|
+
dependencies = [
|
|
2083
|
+
"async-trait",
|
|
2084
|
+
"simple-agents-core",
|
|
2085
|
+
"simple-agents-providers",
|
|
2086
|
+
"simple-agents-types",
|
|
2087
|
+
"tokio",
|
|
2088
|
+
]
|
|
2089
|
+
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "simple-agents-healing"
|
|
2092
|
+
version = "0.1.0"
|
|
2093
|
+
dependencies = [
|
|
2094
|
+
"criterion",
|
|
2095
|
+
"proptest",
|
|
2096
|
+
"regex",
|
|
2097
|
+
"serde",
|
|
2098
|
+
"serde_json",
|
|
2099
|
+
"simple-agents-macros",
|
|
2100
|
+
"simple-agents-types",
|
|
2101
|
+
"thiserror 1.0.69",
|
|
2102
|
+
"tokio",
|
|
2103
|
+
"tracing",
|
|
2104
|
+
]
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "simple-agents-macros"
|
|
2108
|
+
version = "0.1.0"
|
|
2109
|
+
dependencies = [
|
|
2110
|
+
"proc-macro2",
|
|
2111
|
+
"quote",
|
|
2112
|
+
"serde",
|
|
2113
|
+
"serde_json",
|
|
2114
|
+
"simple-agents-types",
|
|
2115
|
+
"syn",
|
|
2116
|
+
]
|
|
2117
|
+
|
|
2118
|
+
[[package]]
|
|
2119
|
+
name = "simple-agents-napi"
|
|
2120
|
+
version = "0.1.0"
|
|
2121
|
+
dependencies = [
|
|
2122
|
+
"napi",
|
|
2123
|
+
"napi-derive",
|
|
2124
|
+
"simple-agents-core",
|
|
2125
|
+
"simple-agents-providers",
|
|
2126
|
+
"simple-agents-types",
|
|
2127
|
+
"tokio",
|
|
2128
|
+
]
|
|
2129
|
+
|
|
2130
|
+
[[package]]
|
|
2131
|
+
name = "simple-agents-providers"
|
|
2132
|
+
version = "0.1.0"
|
|
2133
|
+
dependencies = [
|
|
2134
|
+
"async-trait",
|
|
2135
|
+
"bytes",
|
|
2136
|
+
"dotenv",
|
|
2137
|
+
"futures",
|
|
2138
|
+
"futures-core",
|
|
2139
|
+
"futures-util",
|
|
2140
|
+
"governor",
|
|
2141
|
+
"metrics",
|
|
2142
|
+
"metrics-exporter-prometheus",
|
|
2143
|
+
"reqwest",
|
|
2144
|
+
"serde",
|
|
2145
|
+
"serde_json",
|
|
2146
|
+
"simple-agents-cache",
|
|
2147
|
+
"simple-agents-healing",
|
|
2148
|
+
"simple-agents-macros",
|
|
2149
|
+
"simple-agents-types",
|
|
2150
|
+
"thiserror 2.0.17",
|
|
2151
|
+
"tokio",
|
|
2152
|
+
"tokio-test",
|
|
2153
|
+
"tracing",
|
|
2154
|
+
"tracing-subscriber",
|
|
2155
|
+
]
|
|
2156
|
+
|
|
2157
|
+
[[package]]
|
|
2158
|
+
name = "simple-agents-py"
|
|
2159
|
+
version = "0.1.0"
|
|
2160
|
+
dependencies = [
|
|
2161
|
+
"pyo3",
|
|
2162
|
+
"simple-agents-core",
|
|
2163
|
+
"simple-agents-providers",
|
|
2164
|
+
"simple-agents-types",
|
|
2165
|
+
"tokio",
|
|
2166
|
+
]
|
|
2167
|
+
|
|
2168
|
+
[[package]]
|
|
2169
|
+
name = "simple-agents-router"
|
|
2170
|
+
version = "0.1.0"
|
|
2171
|
+
dependencies = [
|
|
2172
|
+
"async-trait",
|
|
2173
|
+
"rand 0.8.5",
|
|
2174
|
+
"serde_json",
|
|
2175
|
+
"simple-agents-types",
|
|
2176
|
+
"tokio",
|
|
2177
|
+
]
|
|
2178
|
+
|
|
2179
|
+
[[package]]
|
|
2180
|
+
name = "simple-agents-types"
|
|
2181
|
+
version = "0.1.0"
|
|
2182
|
+
dependencies = [
|
|
2183
|
+
"async-trait",
|
|
2184
|
+
"blake3",
|
|
2185
|
+
"futures-core",
|
|
2186
|
+
"rand 0.8.5",
|
|
2187
|
+
"serde",
|
|
2188
|
+
"serde_json",
|
|
2189
|
+
"subtle",
|
|
2190
|
+
"thiserror 1.0.69",
|
|
2191
|
+
"tokio",
|
|
2192
|
+
]
|
|
2193
|
+
|
|
2194
|
+
[[package]]
|
|
2195
|
+
name = "sketches-ddsketch"
|
|
2196
|
+
version = "0.2.2"
|
|
2197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2198
|
+
checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c"
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "slab"
|
|
2202
|
+
version = "0.4.11"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2205
|
+
|
|
2206
|
+
[[package]]
|
|
2207
|
+
name = "smallvec"
|
|
2208
|
+
version = "1.15.1"
|
|
2209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2211
|
+
|
|
2212
|
+
[[package]]
|
|
2213
|
+
name = "socket2"
|
|
2214
|
+
version = "0.6.1"
|
|
2215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2216
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
2217
|
+
dependencies = [
|
|
2218
|
+
"libc",
|
|
2219
|
+
"windows-sys 0.60.2",
|
|
2220
|
+
]
|
|
2221
|
+
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "spinning_top"
|
|
2224
|
+
version = "0.3.0"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300"
|
|
2227
|
+
dependencies = [
|
|
2228
|
+
"lock_api",
|
|
2229
|
+
]
|
|
2230
|
+
|
|
2231
|
+
[[package]]
|
|
2232
|
+
name = "stable_deref_trait"
|
|
2233
|
+
version = "1.2.1"
|
|
2234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2235
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2236
|
+
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "strsim"
|
|
2239
|
+
version = "0.11.1"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2242
|
+
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "subtle"
|
|
2245
|
+
version = "2.6.1"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2248
|
+
|
|
2249
|
+
[[package]]
|
|
2250
|
+
name = "syn"
|
|
2251
|
+
version = "2.0.114"
|
|
2252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2253
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
2254
|
+
dependencies = [
|
|
2255
|
+
"proc-macro2",
|
|
2256
|
+
"quote",
|
|
2257
|
+
"unicode-ident",
|
|
2258
|
+
]
|
|
2259
|
+
|
|
2260
|
+
[[package]]
|
|
2261
|
+
name = "sync_wrapper"
|
|
2262
|
+
version = "1.0.2"
|
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2265
|
+
dependencies = [
|
|
2266
|
+
"futures-core",
|
|
2267
|
+
]
|
|
2268
|
+
|
|
2269
|
+
[[package]]
|
|
2270
|
+
name = "synstructure"
|
|
2271
|
+
version = "0.13.2"
|
|
2272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2274
|
+
dependencies = [
|
|
2275
|
+
"proc-macro2",
|
|
2276
|
+
"quote",
|
|
2277
|
+
"syn",
|
|
2278
|
+
]
|
|
2279
|
+
|
|
2280
|
+
[[package]]
|
|
2281
|
+
name = "system-configuration"
|
|
2282
|
+
version = "0.6.1"
|
|
2283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
+
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
|
2285
|
+
dependencies = [
|
|
2286
|
+
"bitflags",
|
|
2287
|
+
"core-foundation 0.9.4",
|
|
2288
|
+
"system-configuration-sys",
|
|
2289
|
+
]
|
|
2290
|
+
|
|
2291
|
+
[[package]]
|
|
2292
|
+
name = "system-configuration-sys"
|
|
2293
|
+
version = "0.6.0"
|
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
2296
|
+
dependencies = [
|
|
2297
|
+
"core-foundation-sys",
|
|
2298
|
+
"libc",
|
|
2299
|
+
]
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "target-lexicon"
|
|
2303
|
+
version = "0.12.16"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
2306
|
+
|
|
2307
|
+
[[package]]
|
|
2308
|
+
name = "tempfile"
|
|
2309
|
+
version = "3.24.0"
|
|
2310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
2312
|
+
dependencies = [
|
|
2313
|
+
"fastrand",
|
|
2314
|
+
"getrandom 0.3.4",
|
|
2315
|
+
"once_cell",
|
|
2316
|
+
"rustix",
|
|
2317
|
+
"windows-sys 0.61.2",
|
|
2318
|
+
]
|
|
2319
|
+
|
|
2320
|
+
[[package]]
|
|
2321
|
+
name = "thiserror"
|
|
2322
|
+
version = "1.0.69"
|
|
2323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2324
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2325
|
+
dependencies = [
|
|
2326
|
+
"thiserror-impl 1.0.69",
|
|
2327
|
+
]
|
|
2328
|
+
|
|
2329
|
+
[[package]]
|
|
2330
|
+
name = "thiserror"
|
|
2331
|
+
version = "2.0.17"
|
|
2332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
2334
|
+
dependencies = [
|
|
2335
|
+
"thiserror-impl 2.0.17",
|
|
2336
|
+
]
|
|
2337
|
+
|
|
2338
|
+
[[package]]
|
|
2339
|
+
name = "thiserror-impl"
|
|
2340
|
+
version = "1.0.69"
|
|
2341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2342
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2343
|
+
dependencies = [
|
|
2344
|
+
"proc-macro2",
|
|
2345
|
+
"quote",
|
|
2346
|
+
"syn",
|
|
2347
|
+
]
|
|
2348
|
+
|
|
2349
|
+
[[package]]
|
|
2350
|
+
name = "thiserror-impl"
|
|
2351
|
+
version = "2.0.17"
|
|
2352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
2354
|
+
dependencies = [
|
|
2355
|
+
"proc-macro2",
|
|
2356
|
+
"quote",
|
|
2357
|
+
"syn",
|
|
2358
|
+
]
|
|
2359
|
+
|
|
2360
|
+
[[package]]
|
|
2361
|
+
name = "thread_local"
|
|
2362
|
+
version = "1.1.9"
|
|
2363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2364
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
2365
|
+
dependencies = [
|
|
2366
|
+
"cfg-if",
|
|
2367
|
+
]
|
|
2368
|
+
|
|
2369
|
+
[[package]]
|
|
2370
|
+
name = "tinystr"
|
|
2371
|
+
version = "0.8.2"
|
|
2372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2373
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
2374
|
+
dependencies = [
|
|
2375
|
+
"displaydoc",
|
|
2376
|
+
"zerovec",
|
|
2377
|
+
]
|
|
2378
|
+
|
|
2379
|
+
[[package]]
|
|
2380
|
+
name = "tinytemplate"
|
|
2381
|
+
version = "1.2.1"
|
|
2382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2384
|
+
dependencies = [
|
|
2385
|
+
"serde",
|
|
2386
|
+
"serde_json",
|
|
2387
|
+
]
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "tokio"
|
|
2391
|
+
version = "1.49.0"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
2394
|
+
dependencies = [
|
|
2395
|
+
"bytes",
|
|
2396
|
+
"libc",
|
|
2397
|
+
"mio",
|
|
2398
|
+
"parking_lot",
|
|
2399
|
+
"pin-project-lite",
|
|
2400
|
+
"signal-hook-registry",
|
|
2401
|
+
"socket2",
|
|
2402
|
+
"tokio-macros",
|
|
2403
|
+
"windows-sys 0.61.2",
|
|
2404
|
+
]
|
|
2405
|
+
|
|
2406
|
+
[[package]]
|
|
2407
|
+
name = "tokio-macros"
|
|
2408
|
+
version = "2.6.0"
|
|
2409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2410
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
2411
|
+
dependencies = [
|
|
2412
|
+
"proc-macro2",
|
|
2413
|
+
"quote",
|
|
2414
|
+
"syn",
|
|
2415
|
+
]
|
|
2416
|
+
|
|
2417
|
+
[[package]]
|
|
2418
|
+
name = "tokio-native-tls"
|
|
2419
|
+
version = "0.3.1"
|
|
2420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2421
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
2422
|
+
dependencies = [
|
|
2423
|
+
"native-tls",
|
|
2424
|
+
"tokio",
|
|
2425
|
+
]
|
|
2426
|
+
|
|
2427
|
+
[[package]]
|
|
2428
|
+
name = "tokio-rustls"
|
|
2429
|
+
version = "0.26.4"
|
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2432
|
+
dependencies = [
|
|
2433
|
+
"rustls",
|
|
2434
|
+
"tokio",
|
|
2435
|
+
]
|
|
2436
|
+
|
|
2437
|
+
[[package]]
|
|
2438
|
+
name = "tokio-stream"
|
|
2439
|
+
version = "0.1.18"
|
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
2442
|
+
dependencies = [
|
|
2443
|
+
"futures-core",
|
|
2444
|
+
"pin-project-lite",
|
|
2445
|
+
"tokio",
|
|
2446
|
+
]
|
|
2447
|
+
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "tokio-test"
|
|
2450
|
+
version = "0.4.5"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"futures-core",
|
|
2455
|
+
"tokio",
|
|
2456
|
+
"tokio-stream",
|
|
2457
|
+
]
|
|
2458
|
+
|
|
2459
|
+
[[package]]
|
|
2460
|
+
name = "tokio-util"
|
|
2461
|
+
version = "0.7.18"
|
|
2462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
2464
|
+
dependencies = [
|
|
2465
|
+
"bytes",
|
|
2466
|
+
"futures-core",
|
|
2467
|
+
"futures-sink",
|
|
2468
|
+
"pin-project-lite",
|
|
2469
|
+
"tokio",
|
|
2470
|
+
]
|
|
2471
|
+
|
|
2472
|
+
[[package]]
|
|
2473
|
+
name = "toml"
|
|
2474
|
+
version = "0.8.23"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
2477
|
+
dependencies = [
|
|
2478
|
+
"serde",
|
|
2479
|
+
"serde_spanned",
|
|
2480
|
+
"toml_datetime",
|
|
2481
|
+
"toml_edit",
|
|
2482
|
+
]
|
|
2483
|
+
|
|
2484
|
+
[[package]]
|
|
2485
|
+
name = "toml_datetime"
|
|
2486
|
+
version = "0.6.11"
|
|
2487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2488
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
2489
|
+
dependencies = [
|
|
2490
|
+
"serde",
|
|
2491
|
+
]
|
|
2492
|
+
|
|
2493
|
+
[[package]]
|
|
2494
|
+
name = "toml_edit"
|
|
2495
|
+
version = "0.22.27"
|
|
2496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
2498
|
+
dependencies = [
|
|
2499
|
+
"indexmap",
|
|
2500
|
+
"serde",
|
|
2501
|
+
"serde_spanned",
|
|
2502
|
+
"toml_datetime",
|
|
2503
|
+
"toml_write",
|
|
2504
|
+
"winnow",
|
|
2505
|
+
]
|
|
2506
|
+
|
|
2507
|
+
[[package]]
|
|
2508
|
+
name = "toml_write"
|
|
2509
|
+
version = "0.1.2"
|
|
2510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
2512
|
+
|
|
2513
|
+
[[package]]
|
|
2514
|
+
name = "tower"
|
|
2515
|
+
version = "0.5.3"
|
|
2516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2518
|
+
dependencies = [
|
|
2519
|
+
"futures-core",
|
|
2520
|
+
"futures-util",
|
|
2521
|
+
"pin-project-lite",
|
|
2522
|
+
"sync_wrapper",
|
|
2523
|
+
"tokio",
|
|
2524
|
+
"tower-layer",
|
|
2525
|
+
"tower-service",
|
|
2526
|
+
]
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "tower-http"
|
|
2530
|
+
version = "0.6.8"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"bitflags",
|
|
2535
|
+
"bytes",
|
|
2536
|
+
"futures-util",
|
|
2537
|
+
"http",
|
|
2538
|
+
"http-body",
|
|
2539
|
+
"iri-string",
|
|
2540
|
+
"pin-project-lite",
|
|
2541
|
+
"tower",
|
|
2542
|
+
"tower-layer",
|
|
2543
|
+
"tower-service",
|
|
2544
|
+
]
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "tower-layer"
|
|
2548
|
+
version = "0.3.3"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2551
|
+
|
|
2552
|
+
[[package]]
|
|
2553
|
+
name = "tower-service"
|
|
2554
|
+
version = "0.3.3"
|
|
2555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2557
|
+
|
|
2558
|
+
[[package]]
|
|
2559
|
+
name = "tracing"
|
|
2560
|
+
version = "0.1.44"
|
|
2561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2563
|
+
dependencies = [
|
|
2564
|
+
"pin-project-lite",
|
|
2565
|
+
"tracing-attributes",
|
|
2566
|
+
"tracing-core",
|
|
2567
|
+
]
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "tracing-attributes"
|
|
2571
|
+
version = "0.1.31"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2574
|
+
dependencies = [
|
|
2575
|
+
"proc-macro2",
|
|
2576
|
+
"quote",
|
|
2577
|
+
"syn",
|
|
2578
|
+
]
|
|
2579
|
+
|
|
2580
|
+
[[package]]
|
|
2581
|
+
name = "tracing-core"
|
|
2582
|
+
version = "0.1.36"
|
|
2583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2585
|
+
dependencies = [
|
|
2586
|
+
"once_cell",
|
|
2587
|
+
"valuable",
|
|
2588
|
+
]
|
|
2589
|
+
|
|
2590
|
+
[[package]]
|
|
2591
|
+
name = "tracing-log"
|
|
2592
|
+
version = "0.2.0"
|
|
2593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2595
|
+
dependencies = [
|
|
2596
|
+
"log",
|
|
2597
|
+
"once_cell",
|
|
2598
|
+
"tracing-core",
|
|
2599
|
+
]
|
|
2600
|
+
|
|
2601
|
+
[[package]]
|
|
2602
|
+
name = "tracing-subscriber"
|
|
2603
|
+
version = "0.3.22"
|
|
2604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
2606
|
+
dependencies = [
|
|
2607
|
+
"nu-ansi-term",
|
|
2608
|
+
"sharded-slab",
|
|
2609
|
+
"smallvec",
|
|
2610
|
+
"thread_local",
|
|
2611
|
+
"tracing-core",
|
|
2612
|
+
"tracing-log",
|
|
2613
|
+
]
|
|
2614
|
+
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "try-lock"
|
|
2617
|
+
version = "0.2.5"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2620
|
+
|
|
2621
|
+
[[package]]
|
|
2622
|
+
name = "unarray"
|
|
2623
|
+
version = "0.1.4"
|
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
2626
|
+
|
|
2627
|
+
[[package]]
|
|
2628
|
+
name = "unicode-ident"
|
|
2629
|
+
version = "1.0.22"
|
|
2630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
2632
|
+
|
|
2633
|
+
[[package]]
|
|
2634
|
+
name = "unicode-segmentation"
|
|
2635
|
+
version = "1.12.0"
|
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
2638
|
+
|
|
2639
|
+
[[package]]
|
|
2640
|
+
name = "unindent"
|
|
2641
|
+
version = "0.2.4"
|
|
2642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "unsafe-libyaml"
|
|
2647
|
+
version = "0.2.11"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
2650
|
+
|
|
2651
|
+
[[package]]
|
|
2652
|
+
name = "untrusted"
|
|
2653
|
+
version = "0.9.0"
|
|
2654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2656
|
+
|
|
2657
|
+
[[package]]
|
|
2658
|
+
name = "url"
|
|
2659
|
+
version = "2.5.8"
|
|
2660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2661
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2662
|
+
dependencies = [
|
|
2663
|
+
"form_urlencoded",
|
|
2664
|
+
"idna",
|
|
2665
|
+
"percent-encoding",
|
|
2666
|
+
"serde",
|
|
2667
|
+
]
|
|
2668
|
+
|
|
2669
|
+
[[package]]
|
|
2670
|
+
name = "utf8_iter"
|
|
2671
|
+
version = "1.0.4"
|
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2674
|
+
|
|
2675
|
+
[[package]]
|
|
2676
|
+
name = "utf8parse"
|
|
2677
|
+
version = "0.2.2"
|
|
2678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2680
|
+
|
|
2681
|
+
[[package]]
|
|
2682
|
+
name = "valuable"
|
|
2683
|
+
version = "0.1.1"
|
|
2684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2685
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2686
|
+
|
|
2687
|
+
[[package]]
|
|
2688
|
+
name = "vcpkg"
|
|
2689
|
+
version = "0.2.15"
|
|
2690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2691
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2692
|
+
|
|
2693
|
+
[[package]]
|
|
2694
|
+
name = "version_check"
|
|
2695
|
+
version = "0.9.5"
|
|
2696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2697
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2698
|
+
|
|
2699
|
+
[[package]]
|
|
2700
|
+
name = "wait-timeout"
|
|
2701
|
+
version = "0.2.1"
|
|
2702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2703
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
2704
|
+
dependencies = [
|
|
2705
|
+
"libc",
|
|
2706
|
+
]
|
|
2707
|
+
|
|
2708
|
+
[[package]]
|
|
2709
|
+
name = "walkdir"
|
|
2710
|
+
version = "2.5.0"
|
|
2711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2712
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2713
|
+
dependencies = [
|
|
2714
|
+
"same-file",
|
|
2715
|
+
"winapi-util",
|
|
2716
|
+
]
|
|
2717
|
+
|
|
2718
|
+
[[package]]
|
|
2719
|
+
name = "want"
|
|
2720
|
+
version = "0.3.1"
|
|
2721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2723
|
+
dependencies = [
|
|
2724
|
+
"try-lock",
|
|
2725
|
+
]
|
|
2726
|
+
|
|
2727
|
+
[[package]]
|
|
2728
|
+
name = "wasi"
|
|
2729
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2731
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2732
|
+
|
|
2733
|
+
[[package]]
|
|
2734
|
+
name = "wasip2"
|
|
2735
|
+
version = "1.0.2+wasi-0.2.9"
|
|
2736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
2738
|
+
dependencies = [
|
|
2739
|
+
"wit-bindgen",
|
|
2740
|
+
]
|
|
2741
|
+
|
|
2742
|
+
[[package]]
|
|
2743
|
+
name = "wasm-bindgen"
|
|
2744
|
+
version = "0.2.108"
|
|
2745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2746
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
2747
|
+
dependencies = [
|
|
2748
|
+
"cfg-if",
|
|
2749
|
+
"once_cell",
|
|
2750
|
+
"rustversion",
|
|
2751
|
+
"wasm-bindgen-macro",
|
|
2752
|
+
"wasm-bindgen-shared",
|
|
2753
|
+
]
|
|
2754
|
+
|
|
2755
|
+
[[package]]
|
|
2756
|
+
name = "wasm-bindgen-futures"
|
|
2757
|
+
version = "0.4.58"
|
|
2758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2759
|
+
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
|
2760
|
+
dependencies = [
|
|
2761
|
+
"cfg-if",
|
|
2762
|
+
"futures-util",
|
|
2763
|
+
"js-sys",
|
|
2764
|
+
"once_cell",
|
|
2765
|
+
"wasm-bindgen",
|
|
2766
|
+
"web-sys",
|
|
2767
|
+
]
|
|
2768
|
+
|
|
2769
|
+
[[package]]
|
|
2770
|
+
name = "wasm-bindgen-macro"
|
|
2771
|
+
version = "0.2.108"
|
|
2772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
2774
|
+
dependencies = [
|
|
2775
|
+
"quote",
|
|
2776
|
+
"wasm-bindgen-macro-support",
|
|
2777
|
+
]
|
|
2778
|
+
|
|
2779
|
+
[[package]]
|
|
2780
|
+
name = "wasm-bindgen-macro-support"
|
|
2781
|
+
version = "0.2.108"
|
|
2782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
2784
|
+
dependencies = [
|
|
2785
|
+
"bumpalo",
|
|
2786
|
+
"proc-macro2",
|
|
2787
|
+
"quote",
|
|
2788
|
+
"syn",
|
|
2789
|
+
"wasm-bindgen-shared",
|
|
2790
|
+
]
|
|
2791
|
+
|
|
2792
|
+
[[package]]
|
|
2793
|
+
name = "wasm-bindgen-shared"
|
|
2794
|
+
version = "0.2.108"
|
|
2795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
2797
|
+
dependencies = [
|
|
2798
|
+
"unicode-ident",
|
|
2799
|
+
]
|
|
2800
|
+
|
|
2801
|
+
[[package]]
|
|
2802
|
+
name = "wasm-streams"
|
|
2803
|
+
version = "0.4.2"
|
|
2804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
2806
|
+
dependencies = [
|
|
2807
|
+
"futures-util",
|
|
2808
|
+
"js-sys",
|
|
2809
|
+
"wasm-bindgen",
|
|
2810
|
+
"wasm-bindgen-futures",
|
|
2811
|
+
"web-sys",
|
|
2812
|
+
]
|
|
2813
|
+
|
|
2814
|
+
[[package]]
|
|
2815
|
+
name = "web-sys"
|
|
2816
|
+
version = "0.3.85"
|
|
2817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
+
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
|
2819
|
+
dependencies = [
|
|
2820
|
+
"js-sys",
|
|
2821
|
+
"wasm-bindgen",
|
|
2822
|
+
]
|
|
2823
|
+
|
|
2824
|
+
[[package]]
|
|
2825
|
+
name = "winapi"
|
|
2826
|
+
version = "0.3.9"
|
|
2827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2828
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2829
|
+
dependencies = [
|
|
2830
|
+
"winapi-i686-pc-windows-gnu",
|
|
2831
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2832
|
+
]
|
|
2833
|
+
|
|
2834
|
+
[[package]]
|
|
2835
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2836
|
+
version = "0.4.0"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2839
|
+
|
|
2840
|
+
[[package]]
|
|
2841
|
+
name = "winapi-util"
|
|
2842
|
+
version = "0.1.11"
|
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2845
|
+
dependencies = [
|
|
2846
|
+
"windows-sys 0.61.2",
|
|
2847
|
+
]
|
|
2848
|
+
|
|
2849
|
+
[[package]]
|
|
2850
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2851
|
+
version = "0.4.0"
|
|
2852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2853
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2854
|
+
|
|
2855
|
+
[[package]]
|
|
2856
|
+
name = "windows-link"
|
|
2857
|
+
version = "0.2.1"
|
|
2858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2859
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2860
|
+
|
|
2861
|
+
[[package]]
|
|
2862
|
+
name = "windows-registry"
|
|
2863
|
+
version = "0.6.1"
|
|
2864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2865
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
2866
|
+
dependencies = [
|
|
2867
|
+
"windows-link",
|
|
2868
|
+
"windows-result",
|
|
2869
|
+
"windows-strings",
|
|
2870
|
+
]
|
|
2871
|
+
|
|
2872
|
+
[[package]]
|
|
2873
|
+
name = "windows-result"
|
|
2874
|
+
version = "0.4.1"
|
|
2875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2877
|
+
dependencies = [
|
|
2878
|
+
"windows-link",
|
|
2879
|
+
]
|
|
2880
|
+
|
|
2881
|
+
[[package]]
|
|
2882
|
+
name = "windows-strings"
|
|
2883
|
+
version = "0.5.1"
|
|
2884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2885
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2886
|
+
dependencies = [
|
|
2887
|
+
"windows-link",
|
|
2888
|
+
]
|
|
2889
|
+
|
|
2890
|
+
[[package]]
|
|
2891
|
+
name = "windows-sys"
|
|
2892
|
+
version = "0.52.0"
|
|
2893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2894
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2895
|
+
dependencies = [
|
|
2896
|
+
"windows-targets 0.52.6",
|
|
2897
|
+
]
|
|
2898
|
+
|
|
2899
|
+
[[package]]
|
|
2900
|
+
name = "windows-sys"
|
|
2901
|
+
version = "0.60.2"
|
|
2902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2904
|
+
dependencies = [
|
|
2905
|
+
"windows-targets 0.53.5",
|
|
2906
|
+
]
|
|
2907
|
+
|
|
2908
|
+
[[package]]
|
|
2909
|
+
name = "windows-sys"
|
|
2910
|
+
version = "0.61.2"
|
|
2911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2913
|
+
dependencies = [
|
|
2914
|
+
"windows-link",
|
|
2915
|
+
]
|
|
2916
|
+
|
|
2917
|
+
[[package]]
|
|
2918
|
+
name = "windows-targets"
|
|
2919
|
+
version = "0.52.6"
|
|
2920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2922
|
+
dependencies = [
|
|
2923
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2924
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2925
|
+
"windows_i686_gnu 0.52.6",
|
|
2926
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2927
|
+
"windows_i686_msvc 0.52.6",
|
|
2928
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2929
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2930
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2931
|
+
]
|
|
2932
|
+
|
|
2933
|
+
[[package]]
|
|
2934
|
+
name = "windows-targets"
|
|
2935
|
+
version = "0.53.5"
|
|
2936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2937
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2938
|
+
dependencies = [
|
|
2939
|
+
"windows-link",
|
|
2940
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2941
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2942
|
+
"windows_i686_gnu 0.53.1",
|
|
2943
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2944
|
+
"windows_i686_msvc 0.53.1",
|
|
2945
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2946
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2947
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2948
|
+
]
|
|
2949
|
+
|
|
2950
|
+
[[package]]
|
|
2951
|
+
name = "windows_aarch64_gnullvm"
|
|
2952
|
+
version = "0.52.6"
|
|
2953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2954
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2955
|
+
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "windows_aarch64_gnullvm"
|
|
2958
|
+
version = "0.53.1"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2961
|
+
|
|
2962
|
+
[[package]]
|
|
2963
|
+
name = "windows_aarch64_msvc"
|
|
2964
|
+
version = "0.52.6"
|
|
2965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2966
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2967
|
+
|
|
2968
|
+
[[package]]
|
|
2969
|
+
name = "windows_aarch64_msvc"
|
|
2970
|
+
version = "0.53.1"
|
|
2971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2972
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2973
|
+
|
|
2974
|
+
[[package]]
|
|
2975
|
+
name = "windows_i686_gnu"
|
|
2976
|
+
version = "0.52.6"
|
|
2977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2979
|
+
|
|
2980
|
+
[[package]]
|
|
2981
|
+
name = "windows_i686_gnu"
|
|
2982
|
+
version = "0.53.1"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2985
|
+
|
|
2986
|
+
[[package]]
|
|
2987
|
+
name = "windows_i686_gnullvm"
|
|
2988
|
+
version = "0.52.6"
|
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2991
|
+
|
|
2992
|
+
[[package]]
|
|
2993
|
+
name = "windows_i686_gnullvm"
|
|
2994
|
+
version = "0.53.1"
|
|
2995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2997
|
+
|
|
2998
|
+
[[package]]
|
|
2999
|
+
name = "windows_i686_msvc"
|
|
3000
|
+
version = "0.52.6"
|
|
3001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3003
|
+
|
|
3004
|
+
[[package]]
|
|
3005
|
+
name = "windows_i686_msvc"
|
|
3006
|
+
version = "0.53.1"
|
|
3007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3009
|
+
|
|
3010
|
+
[[package]]
|
|
3011
|
+
name = "windows_x86_64_gnu"
|
|
3012
|
+
version = "0.52.6"
|
|
3013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3015
|
+
|
|
3016
|
+
[[package]]
|
|
3017
|
+
name = "windows_x86_64_gnu"
|
|
3018
|
+
version = "0.53.1"
|
|
3019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3021
|
+
|
|
3022
|
+
[[package]]
|
|
3023
|
+
name = "windows_x86_64_gnullvm"
|
|
3024
|
+
version = "0.52.6"
|
|
3025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3026
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3027
|
+
|
|
3028
|
+
[[package]]
|
|
3029
|
+
name = "windows_x86_64_gnullvm"
|
|
3030
|
+
version = "0.53.1"
|
|
3031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3032
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3033
|
+
|
|
3034
|
+
[[package]]
|
|
3035
|
+
name = "windows_x86_64_msvc"
|
|
3036
|
+
version = "0.52.6"
|
|
3037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3039
|
+
|
|
3040
|
+
[[package]]
|
|
3041
|
+
name = "windows_x86_64_msvc"
|
|
3042
|
+
version = "0.53.1"
|
|
3043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3044
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3045
|
+
|
|
3046
|
+
[[package]]
|
|
3047
|
+
name = "winnow"
|
|
3048
|
+
version = "0.7.14"
|
|
3049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3050
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
3051
|
+
dependencies = [
|
|
3052
|
+
"memchr",
|
|
3053
|
+
]
|
|
3054
|
+
|
|
3055
|
+
[[package]]
|
|
3056
|
+
name = "wit-bindgen"
|
|
3057
|
+
version = "0.51.0"
|
|
3058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
3060
|
+
|
|
3061
|
+
[[package]]
|
|
3062
|
+
name = "writeable"
|
|
3063
|
+
version = "0.6.2"
|
|
3064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3065
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
3066
|
+
|
|
3067
|
+
[[package]]
|
|
3068
|
+
name = "yoke"
|
|
3069
|
+
version = "0.8.1"
|
|
3070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
3072
|
+
dependencies = [
|
|
3073
|
+
"stable_deref_trait",
|
|
3074
|
+
"yoke-derive",
|
|
3075
|
+
"zerofrom",
|
|
3076
|
+
]
|
|
3077
|
+
|
|
3078
|
+
[[package]]
|
|
3079
|
+
name = "yoke-derive"
|
|
3080
|
+
version = "0.8.1"
|
|
3081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3082
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
3083
|
+
dependencies = [
|
|
3084
|
+
"proc-macro2",
|
|
3085
|
+
"quote",
|
|
3086
|
+
"syn",
|
|
3087
|
+
"synstructure",
|
|
3088
|
+
]
|
|
3089
|
+
|
|
3090
|
+
[[package]]
|
|
3091
|
+
name = "zerocopy"
|
|
3092
|
+
version = "0.8.33"
|
|
3093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3094
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
3095
|
+
dependencies = [
|
|
3096
|
+
"zerocopy-derive",
|
|
3097
|
+
]
|
|
3098
|
+
|
|
3099
|
+
[[package]]
|
|
3100
|
+
name = "zerocopy-derive"
|
|
3101
|
+
version = "0.8.33"
|
|
3102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3103
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
3104
|
+
dependencies = [
|
|
3105
|
+
"proc-macro2",
|
|
3106
|
+
"quote",
|
|
3107
|
+
"syn",
|
|
3108
|
+
]
|
|
3109
|
+
|
|
3110
|
+
[[package]]
|
|
3111
|
+
name = "zerofrom"
|
|
3112
|
+
version = "0.1.6"
|
|
3113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3115
|
+
dependencies = [
|
|
3116
|
+
"zerofrom-derive",
|
|
3117
|
+
]
|
|
3118
|
+
|
|
3119
|
+
[[package]]
|
|
3120
|
+
name = "zerofrom-derive"
|
|
3121
|
+
version = "0.1.6"
|
|
3122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3124
|
+
dependencies = [
|
|
3125
|
+
"proc-macro2",
|
|
3126
|
+
"quote",
|
|
3127
|
+
"syn",
|
|
3128
|
+
"synstructure",
|
|
3129
|
+
]
|
|
3130
|
+
|
|
3131
|
+
[[package]]
|
|
3132
|
+
name = "zeroize"
|
|
3133
|
+
version = "1.8.2"
|
|
3134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3135
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3136
|
+
|
|
3137
|
+
[[package]]
|
|
3138
|
+
name = "zerotrie"
|
|
3139
|
+
version = "0.2.3"
|
|
3140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3141
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
3142
|
+
dependencies = [
|
|
3143
|
+
"displaydoc",
|
|
3144
|
+
"yoke",
|
|
3145
|
+
"zerofrom",
|
|
3146
|
+
]
|
|
3147
|
+
|
|
3148
|
+
[[package]]
|
|
3149
|
+
name = "zerovec"
|
|
3150
|
+
version = "0.11.5"
|
|
3151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
3153
|
+
dependencies = [
|
|
3154
|
+
"yoke",
|
|
3155
|
+
"zerofrom",
|
|
3156
|
+
"zerovec-derive",
|
|
3157
|
+
]
|
|
3158
|
+
|
|
3159
|
+
[[package]]
|
|
3160
|
+
name = "zerovec-derive"
|
|
3161
|
+
version = "0.11.2"
|
|
3162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
3164
|
+
dependencies = [
|
|
3165
|
+
"proc-macro2",
|
|
3166
|
+
"quote",
|
|
3167
|
+
"syn",
|
|
3168
|
+
]
|
|
3169
|
+
|
|
3170
|
+
[[package]]
|
|
3171
|
+
name = "zmij"
|
|
3172
|
+
version = "1.0.14"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "bd8f3f50b848df28f887acb68e41201b5aea6bc8a8dacc00fb40635ff9a72fea"
|