pyfastlogging 0.8.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.
- pyfastlogging-0.8.0/Cargo.lock +2146 -0
- pyfastlogging-0.8.0/Cargo.toml +17 -0
- pyfastlogging-0.8.0/PKG-INFO +25 -0
- pyfastlogging-0.8.0/README.md +68 -0
- pyfastlogging-0.8.0/examples/callback.py +30 -0
- pyfastlogging-0.8.0/examples/console.py +17 -0
- pyfastlogging-0.8.0/examples/console_add_writer.py +17 -0
- pyfastlogging-0.8.0/examples/console_default.py +15 -0
- pyfastlogging-0.8.0/examples/console_mp.py +50 -0
- pyfastlogging-0.8.0/examples/file.py +23 -0
- pyfastlogging-0.8.0/examples/fork.py +37 -0
- pyfastlogging-0.8.0/examples/net_unencrypted_one_client.py +63 -0
- pyfastlogging-0.8.0/examples/pool.py +45 -0
- pyfastlogging-0.8.0/examples/pool_spawn.py +53 -0
- pyfastlogging-0.8.0/examples/root_file.py +23 -0
- pyfastlogging-0.8.0/examples/spawn.py +40 -0
- pyfastlogging-0.8.0/examples/syslog.py +19 -0
- pyfastlogging-0.8.0/examples/threads.py +46 -0
- pyfastlogging-0.8.0/fastlogging/Cargo.toml +83 -0
- pyfastlogging-0.8.0/fastlogging/README.md +123 -0
- pyfastlogging-0.8.0/fastlogging/benches/benchmarks.rs +57 -0
- pyfastlogging-0.8.0/fastlogging/doc/README.md +112 -0
- pyfastlogging-0.8.0/fastlogging/examples/callback.rs +28 -0
- pyfastlogging-0.8.0/fastlogging/examples/console.rs +19 -0
- pyfastlogging-0.8.0/fastlogging/examples/console_add_writer.rs +14 -0
- pyfastlogging-0.8.0/fastlogging/examples/console_static.rs +13 -0
- pyfastlogging-0.8.0/fastlogging/examples/default.rs +10 -0
- pyfastlogging-0.8.0/fastlogging/examples/default_logger.rs +13 -0
- pyfastlogging-0.8.0/fastlogging/examples/eventlog.rs +23 -0
- pyfastlogging-0.8.0/fastlogging/examples/ext_config.rs +29 -0
- pyfastlogging-0.8.0/fastlogging/examples/file.rs +32 -0
- pyfastlogging-0.8.0/fastlogging/examples/file_add_writer.rs +27 -0
- pyfastlogging-0.8.0/fastlogging/examples/fork.rs +41 -0
- pyfastlogging-0.8.0/fastlogging/examples/get_server_addresses_ports.rs +53 -0
- pyfastlogging-0.8.0/fastlogging/examples/get_server_configs.rs +55 -0
- pyfastlogging-0.8.0/fastlogging/examples/init.rs +13 -0
- pyfastlogging-0.8.0/fastlogging/examples/net_unencrypted_one_client.rs +84 -0
- pyfastlogging-0.8.0/fastlogging/examples/spawn.rs +57 -0
- pyfastlogging-0.8.0/fastlogging/examples/syslog.rs +13 -0
- pyfastlogging-0.8.0/fastlogging/examples/threads.rs +51 -0
- pyfastlogging-0.8.0/fastlogging/examples/write_config_file.rs +55 -0
- pyfastlogging-0.8.0/fastlogging/src/callback.rs +268 -0
- pyfastlogging-0.8.0/fastlogging/src/config/common.rs +51 -0
- pyfastlogging-0.8.0/fastlogging/src/config/file.rs +444 -0
- pyfastlogging-0.8.0/fastlogging/src/config/instance.rs +321 -0
- pyfastlogging-0.8.0/fastlogging/src/config/mod.rs +6 -0
- pyfastlogging-0.8.0/fastlogging/src/console.rs +315 -0
- pyfastlogging-0.8.0/fastlogging/src/def.rs +402 -0
- pyfastlogging-0.8.0/fastlogging/src/error.rs +155 -0
- pyfastlogging-0.8.0/fastlogging/src/eventlog.rs +206 -0
- pyfastlogging-0.8.0/fastlogging/src/file.rs +437 -0
- pyfastlogging-0.8.0/fastlogging/src/lib.rs +53 -0
- pyfastlogging-0.8.0/fastlogging/src/logger.rs +195 -0
- pyfastlogging-0.8.0/fastlogging/src/logging.rs +1013 -0
- pyfastlogging-0.8.0/fastlogging/src/net/client.rs +338 -0
- pyfastlogging-0.8.0/fastlogging/src/net/def.rs +111 -0
- pyfastlogging-0.8.0/fastlogging/src/net/encryption.rs +90 -0
- pyfastlogging-0.8.0/fastlogging/src/net/mod.rs +78 -0
- pyfastlogging-0.8.0/fastlogging/src/net/server.rs +545 -0
- pyfastlogging-0.8.0/fastlogging/src/root.rs +379 -0
- pyfastlogging-0.8.0/fastlogging/src/syslog.rs +226 -0
- pyfastlogging-0.8.0/fastlogging/src/unix.rs +5 -0
- pyfastlogging-0.8.0/fastlogging/src/windows.rs +47 -0
- pyfastlogging-0.8.0/fastlogging/tests/integration.rs +921 -0
- pyfastlogging-0.8.0/pyfastlogging/Cargo.toml +35 -0
- pyfastlogging-0.8.0/pyfastlogging/README.md +68 -0
- pyfastlogging-0.8.0/pyfastlogging/benches/benchmark.py +509 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/callback.py +30 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/console.py +17 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/console_add_writer.py +17 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/console_default.py +15 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/console_mp.py +50 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/file.py +23 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/fork.py +37 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/net_unencrypted_one_client.py +63 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/pool.py +45 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/pool_spawn.py +53 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/root_file.py +23 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/spawn.py +40 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/syslog.py +19 -0
- pyfastlogging-0.8.0/pyfastlogging/examples/threads.py +46 -0
- pyfastlogging-0.8.0/pyfastlogging/src/def.rs +413 -0
- pyfastlogging-0.8.0/pyfastlogging/src/error.rs +62 -0
- pyfastlogging-0.8.0/pyfastlogging/src/lib.rs +421 -0
- pyfastlogging-0.8.0/pyfastlogging/src/logger.rs +208 -0
- pyfastlogging-0.8.0/pyfastlogging/src/logging.rs +475 -0
- pyfastlogging-0.8.0/pyfastlogging/src/root.rs +385 -0
- pyfastlogging-0.8.0/pyfastlogging/src/writer.rs +389 -0
- pyfastlogging-0.8.0/pyproject.toml +88 -0
- pyfastlogging-0.8.0/src/def.rs +413 -0
- pyfastlogging-0.8.0/src/error.rs +62 -0
- pyfastlogging-0.8.0/src/lib.rs +421 -0
- pyfastlogging-0.8.0/src/logger.rs +208 -0
- pyfastlogging-0.8.0/src/logging.rs +475 -0
- pyfastlogging-0.8.0/src/root.rs +385 -0
- pyfastlogging-0.8.0/src/writer.rs +389 -0
- pyfastlogging-0.8.0/tests/test_integration.py +584 -0
|
@@ -0,0 +1,2146 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "alloca"
|
|
16
|
+
version = "0.4.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"cc",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "android_system_properties"
|
|
25
|
+
version = "0.1.6"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"libc",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anes"
|
|
34
|
+
version = "0.1.6"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "anstream"
|
|
40
|
+
version = "1.0.0"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"anstyle",
|
|
45
|
+
"anstyle-parse",
|
|
46
|
+
"anstyle-query",
|
|
47
|
+
"anstyle-wincon",
|
|
48
|
+
"colorchoice",
|
|
49
|
+
"is_terminal_polyfill",
|
|
50
|
+
"utf8parse",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstyle"
|
|
55
|
+
version = "1.0.14"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-parse"
|
|
61
|
+
version = "1.0.0"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"utf8parse",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "anstyle-query"
|
|
70
|
+
version = "1.1.5"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"windows-sys 0.61.2",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "anstyle-wincon"
|
|
79
|
+
version = "3.0.11"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"anstyle",
|
|
84
|
+
"once_cell_polyfill",
|
|
85
|
+
"windows-sys 0.61.2",
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "autocfg"
|
|
90
|
+
version = "1.5.1"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "bitflags"
|
|
96
|
+
version = "2.13.2"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "block-buffer"
|
|
102
|
+
version = "0.10.4"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"generic-array",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "block-buffer"
|
|
111
|
+
version = "0.12.1"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"hybrid-array",
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "bumpalo"
|
|
120
|
+
version = "3.20.3"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "bytes"
|
|
126
|
+
version = "1.12.1"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "cast"
|
|
132
|
+
version = "0.3.0"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "cbindgen"
|
|
138
|
+
version = "0.29.4"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "2ecb53484c9c167ba674026b656d8a27d7657a58e6066aa902bfb1a4aa00ae20"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"clap",
|
|
143
|
+
"heck",
|
|
144
|
+
"indexmap",
|
|
145
|
+
"log",
|
|
146
|
+
"proc-macro2",
|
|
147
|
+
"quote",
|
|
148
|
+
"serde",
|
|
149
|
+
"serde_json",
|
|
150
|
+
"syn 2.0.119",
|
|
151
|
+
"tempfile",
|
|
152
|
+
"toml",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "cc"
|
|
157
|
+
version = "1.4.6"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "a3eb0f42d6c360dc3f8a821f6bf2fdea7f72bfd36b3076eb0e6d1e9e0752fff4"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"find-msvc-tools",
|
|
162
|
+
"jobserver",
|
|
163
|
+
"libc",
|
|
164
|
+
"shlex",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "cfastlogging"
|
|
169
|
+
version = "0.8.0"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"fastlogging",
|
|
172
|
+
"once_cell",
|
|
173
|
+
"parking_lot",
|
|
174
|
+
"rand",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "cfg-if"
|
|
179
|
+
version = "1.0.4"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "chacha20"
|
|
185
|
+
version = "0.10.2"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"cfg-if",
|
|
190
|
+
"cpufeatures 0.3.1",
|
|
191
|
+
"rand_core",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "chrono"
|
|
196
|
+
version = "0.4.45"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"iana-time-zone",
|
|
201
|
+
"js-sys",
|
|
202
|
+
"num-traits",
|
|
203
|
+
"wasm-bindgen",
|
|
204
|
+
"windows-link",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "ciborium"
|
|
209
|
+
version = "0.2.2"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"ciborium-io",
|
|
214
|
+
"ciborium-ll",
|
|
215
|
+
"serde",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "ciborium-io"
|
|
220
|
+
version = "0.2.2"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "ciborium-ll"
|
|
226
|
+
version = "0.2.2"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"ciborium-io",
|
|
231
|
+
"half",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "clap"
|
|
236
|
+
version = "4.6.7"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "aa8876b300ab35ba921adea3dfd70157a46249b33f95c9084ae5709785478946"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"clap_builder",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "clap_builder"
|
|
245
|
+
version = "4.6.7"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "ec0797fb7aeb1406c84efac526901f7ec3ead2124f946b494e72879d4b54704d"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"anstream",
|
|
250
|
+
"anstyle",
|
|
251
|
+
"clap_lex",
|
|
252
|
+
"strsim",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "clap_lex"
|
|
257
|
+
version = "1.1.1"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "1c133bc6a41be0d194c306b5506d15e6feeea7b1d6604bd3f8310dfb2ca96486"
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "codespan-reporting"
|
|
263
|
+
version = "0.13.1"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"serde",
|
|
268
|
+
"termcolor",
|
|
269
|
+
"unicode-width",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "colorchoice"
|
|
274
|
+
version = "1.0.5"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "combine"
|
|
280
|
+
version = "4.6.8"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"bytes",
|
|
285
|
+
"memchr",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "const-oid"
|
|
290
|
+
version = "0.10.2"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "core-foundation-sys"
|
|
296
|
+
version = "0.8.7"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "cpufeatures"
|
|
302
|
+
version = "0.2.17"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"libc",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "cpufeatures"
|
|
311
|
+
version = "0.3.1"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"libc",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "crc32fast"
|
|
320
|
+
version = "1.5.2"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "01a7799fd6b852db0e61728dde9a204c423b44d689dbd432522543614b490e78"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"cfg-if",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "criterion"
|
|
329
|
+
version = "0.8.2"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"alloca",
|
|
334
|
+
"anes",
|
|
335
|
+
"cast",
|
|
336
|
+
"ciborium",
|
|
337
|
+
"clap",
|
|
338
|
+
"criterion-plot",
|
|
339
|
+
"itertools",
|
|
340
|
+
"num-traits",
|
|
341
|
+
"oorandom",
|
|
342
|
+
"page_size",
|
|
343
|
+
"plotters",
|
|
344
|
+
"rayon",
|
|
345
|
+
"regex",
|
|
346
|
+
"serde",
|
|
347
|
+
"serde_json",
|
|
348
|
+
"tinytemplate",
|
|
349
|
+
"walkdir",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "criterion-plot"
|
|
354
|
+
version = "0.8.2"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"cast",
|
|
359
|
+
"itertools",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "crossbeam-deque"
|
|
364
|
+
version = "0.8.8"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"crossbeam-epoch",
|
|
369
|
+
"crossbeam-utils",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "crossbeam-epoch"
|
|
374
|
+
version = "0.9.21"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"crossbeam-utils",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "crossbeam-utils"
|
|
383
|
+
version = "0.8.23"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "crunchy"
|
|
389
|
+
version = "0.2.4"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "crypto-common"
|
|
395
|
+
version = "0.1.7"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"generic-array",
|
|
400
|
+
"typenum",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "crypto-common"
|
|
405
|
+
version = "0.2.2"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"hybrid-array",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "cxx"
|
|
414
|
+
version = "1.0.202"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "13f6de320895f42e6e081abb5c7983bedcf0b6d0ff9323de0d33f620c8ac1199"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"cc",
|
|
419
|
+
"cxx-build",
|
|
420
|
+
"cxxbridge-cmd",
|
|
421
|
+
"cxxbridge-flags",
|
|
422
|
+
"cxxbridge-macro",
|
|
423
|
+
"foldhash",
|
|
424
|
+
"link-cplusplus",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "cxx-build"
|
|
429
|
+
version = "1.0.202"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "4fde53ca86b9704a943fef0f1e1d836239a6aedca5de3c65fa9f97ec0bd46d39"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"cc",
|
|
434
|
+
"codespan-reporting",
|
|
435
|
+
"indexmap",
|
|
436
|
+
"proc-macro2",
|
|
437
|
+
"quote",
|
|
438
|
+
"scratch",
|
|
439
|
+
"syn 3.0.5",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "cxxbridge-cmd"
|
|
444
|
+
version = "1.0.202"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "07bae89236c811fd4d08ed3441759ac4ac98d752cbfd3de341315ba16ad20ec3"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"clap",
|
|
449
|
+
"codespan-reporting",
|
|
450
|
+
"indexmap",
|
|
451
|
+
"proc-macro2",
|
|
452
|
+
"quote",
|
|
453
|
+
"syn 3.0.5",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "cxxbridge-flags"
|
|
458
|
+
version = "1.0.202"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "49045042e5fced01b80742aba5508de82aa4f13677ed3fa2b4cda709c40c5918"
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "cxxbridge-macro"
|
|
464
|
+
version = "1.0.202"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "b181252e2e3d3b5d183afbdc033a3958b445eb3e1a0ae65fc3d4f5259f5da6fd"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"indexmap",
|
|
469
|
+
"proc-macro2",
|
|
470
|
+
"quote",
|
|
471
|
+
"syn 3.0.5",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "cxxfastlogging"
|
|
476
|
+
version = "0.8.0"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"cxx",
|
|
479
|
+
"cxx-build",
|
|
480
|
+
"fastlogging",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "deranged"
|
|
485
|
+
version = "0.5.8"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "digest"
|
|
491
|
+
version = "0.10.7"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"block-buffer 0.10.4",
|
|
496
|
+
"crypto-common 0.1.7",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "digest"
|
|
501
|
+
version = "0.11.3"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"block-buffer 0.12.1",
|
|
506
|
+
"const-oid",
|
|
507
|
+
"crypto-common 0.2.2",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "either"
|
|
512
|
+
version = "1.18.0"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "equivalent"
|
|
518
|
+
version = "1.0.2"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "errno"
|
|
524
|
+
version = "0.3.14"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"libc",
|
|
529
|
+
"windows-sys 0.61.2",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "eventlog"
|
|
534
|
+
version = "0.4.0"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "5113b2e5ff25bacd65a31a4d8edbb0b6f1d359c0e9298e2ed8d1602cd014222a"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"log",
|
|
539
|
+
"regex",
|
|
540
|
+
"sha2 0.10.9",
|
|
541
|
+
"thiserror 1.0.69",
|
|
542
|
+
"windows",
|
|
543
|
+
"windows-registry",
|
|
544
|
+
"windows-result 0.4.1",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "fastlogging"
|
|
549
|
+
version = "0.8.0"
|
|
550
|
+
dependencies = [
|
|
551
|
+
"chrono",
|
|
552
|
+
"criterion",
|
|
553
|
+
"eventlog",
|
|
554
|
+
"flume",
|
|
555
|
+
"fork",
|
|
556
|
+
"gethostname",
|
|
557
|
+
"log",
|
|
558
|
+
"num_cpus",
|
|
559
|
+
"once_cell",
|
|
560
|
+
"parking_lot",
|
|
561
|
+
"quick-xml",
|
|
562
|
+
"rand",
|
|
563
|
+
"regex",
|
|
564
|
+
"ring",
|
|
565
|
+
"serde",
|
|
566
|
+
"serde_derive",
|
|
567
|
+
"serde_json",
|
|
568
|
+
"serde_yaml",
|
|
569
|
+
"syslog",
|
|
570
|
+
"tempfile",
|
|
571
|
+
"termcolor",
|
|
572
|
+
"thiserror 2.0.20",
|
|
573
|
+
"thread-id",
|
|
574
|
+
"threadpool",
|
|
575
|
+
"windows-sys 0.61.2",
|
|
576
|
+
"zip",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "fastrand"
|
|
581
|
+
version = "2.5.0"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"getrandom 0.4.3",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "find-msvc-tools"
|
|
590
|
+
version = "0.1.12"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "flate2"
|
|
596
|
+
version = "1.1.10"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"zlib-rs",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "flume"
|
|
605
|
+
version = "0.12.0"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"fastrand",
|
|
610
|
+
"futures-core",
|
|
611
|
+
"futures-sink",
|
|
612
|
+
"spin",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "foldhash"
|
|
617
|
+
version = "0.2.0"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "fork"
|
|
623
|
+
version = "0.10.0"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "aafa2fb0e6b3b0886eb36b909c13a5e3dc9d7e0cf436376e43f095177050c029"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"libc",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "futures-core"
|
|
632
|
+
version = "0.3.34"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "futures-sink"
|
|
638
|
+
version = "0.3.34"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "futures-task"
|
|
644
|
+
version = "0.3.34"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "futures-util"
|
|
650
|
+
version = "0.3.34"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
653
|
+
dependencies = [
|
|
654
|
+
"futures-core",
|
|
655
|
+
"futures-task",
|
|
656
|
+
"pin-project-lite",
|
|
657
|
+
"slab",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "generic-array"
|
|
662
|
+
version = "0.14.7"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"typenum",
|
|
667
|
+
"version_check",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "gethostname"
|
|
672
|
+
version = "1.1.0"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"rustix",
|
|
677
|
+
"windows-link",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "getrandom"
|
|
682
|
+
version = "0.2.17"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"cfg-if",
|
|
687
|
+
"libc",
|
|
688
|
+
"wasi",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "getrandom"
|
|
693
|
+
version = "0.4.3"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"cfg-if",
|
|
698
|
+
"js-sys",
|
|
699
|
+
"libc",
|
|
700
|
+
"r-efi",
|
|
701
|
+
"rand_core",
|
|
702
|
+
"wasm-bindgen",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "half"
|
|
707
|
+
version = "2.7.1"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"cfg-if",
|
|
712
|
+
"crunchy",
|
|
713
|
+
"zerocopy",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "hashbrown"
|
|
718
|
+
version = "0.17.1"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "heck"
|
|
724
|
+
version = "0.5.0"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "hermit-abi"
|
|
730
|
+
version = "0.5.3"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "hostname"
|
|
736
|
+
version = "0.4.2"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"cfg-if",
|
|
741
|
+
"libc",
|
|
742
|
+
"windows-link",
|
|
743
|
+
]
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "hybrid-array"
|
|
747
|
+
version = "0.4.15"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "27f864f10dfb56725ce5ce5472bc52252c8f93a4ab86327122cebf62c5f59a17"
|
|
750
|
+
dependencies = [
|
|
751
|
+
"typenum",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "iana-time-zone"
|
|
756
|
+
version = "0.1.65"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
759
|
+
dependencies = [
|
|
760
|
+
"android_system_properties",
|
|
761
|
+
"core-foundation-sys",
|
|
762
|
+
"iana-time-zone-haiku",
|
|
763
|
+
"js-sys",
|
|
764
|
+
"log",
|
|
765
|
+
"wasm-bindgen",
|
|
766
|
+
"windows-core 0.62.2",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "iana-time-zone-haiku"
|
|
771
|
+
version = "0.1.2"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"cc",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "indexmap"
|
|
780
|
+
version = "2.14.2"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"equivalent",
|
|
785
|
+
"hashbrown",
|
|
786
|
+
]
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "is_terminal_polyfill"
|
|
790
|
+
version = "1.70.2"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "itertools"
|
|
796
|
+
version = "0.13.0"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
799
|
+
dependencies = [
|
|
800
|
+
"either",
|
|
801
|
+
]
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "itoa"
|
|
805
|
+
version = "1.0.18"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "jfastlogging-ffm"
|
|
811
|
+
version = "0.8.0"
|
|
812
|
+
dependencies = [
|
|
813
|
+
"cbindgen",
|
|
814
|
+
"fastlogging",
|
|
815
|
+
"once_cell",
|
|
816
|
+
"parking_lot",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "jfastlogging-jni"
|
|
821
|
+
version = "0.8.0"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"fastlogging",
|
|
824
|
+
"jni",
|
|
825
|
+
"once_cell",
|
|
826
|
+
"parking_lot",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "jni"
|
|
831
|
+
version = "0.22.4"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"cfg-if",
|
|
836
|
+
"combine",
|
|
837
|
+
"jni-macros",
|
|
838
|
+
"jni-sys",
|
|
839
|
+
"log",
|
|
840
|
+
"simd_cesu8",
|
|
841
|
+
"thiserror 2.0.20",
|
|
842
|
+
"walkdir",
|
|
843
|
+
"windows-link",
|
|
844
|
+
]
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "jni-macros"
|
|
848
|
+
version = "0.22.4"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
851
|
+
dependencies = [
|
|
852
|
+
"proc-macro2",
|
|
853
|
+
"quote",
|
|
854
|
+
"rustc_version",
|
|
855
|
+
"simd_cesu8",
|
|
856
|
+
"syn 2.0.119",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "jni-sys"
|
|
861
|
+
version = "0.4.1"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
864
|
+
dependencies = [
|
|
865
|
+
"jni-sys-macros",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "jni-sys-macros"
|
|
870
|
+
version = "0.4.1"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"quote",
|
|
875
|
+
"syn 2.0.119",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "jobserver"
|
|
880
|
+
version = "0.1.35"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"getrandom 0.4.3",
|
|
885
|
+
"libc",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "js-sys"
|
|
890
|
+
version = "0.3.105"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"cfg-if",
|
|
895
|
+
"futures-util",
|
|
896
|
+
"wasm-bindgen",
|
|
897
|
+
]
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "libc"
|
|
901
|
+
version = "0.2.189"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "link-cplusplus"
|
|
907
|
+
version = "1.0.12"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"cc",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "linux-raw-sys"
|
|
916
|
+
version = "0.12.1"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "lock_api"
|
|
922
|
+
version = "0.4.14"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"scopeguard",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "log"
|
|
931
|
+
version = "0.4.34"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "lzma-rust2"
|
|
937
|
+
version = "0.16.5"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "ca93e534d1142d1d0dcca6d25fe302508a5dfb40b302802904577725ea0b695b"
|
|
940
|
+
dependencies = [
|
|
941
|
+
"sha2 0.11.0",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "memchr"
|
|
946
|
+
version = "2.8.3"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "num-conv"
|
|
952
|
+
version = "0.2.2"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "num-traits"
|
|
958
|
+
version = "0.2.19"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
961
|
+
dependencies = [
|
|
962
|
+
"autocfg",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "num_cpus"
|
|
967
|
+
version = "1.17.0"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"hermit-abi",
|
|
972
|
+
"libc",
|
|
973
|
+
]
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "num_threads"
|
|
977
|
+
version = "0.1.7"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"libc",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "once_cell"
|
|
986
|
+
version = "1.21.4"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "once_cell_polyfill"
|
|
992
|
+
version = "1.70.2"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "oorandom"
|
|
998
|
+
version = "11.1.5"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "page_size"
|
|
1004
|
+
version = "0.6.0"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"libc",
|
|
1009
|
+
"winapi",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "parking_lot"
|
|
1014
|
+
version = "0.12.5"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"lock_api",
|
|
1019
|
+
"parking_lot_core",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "parking_lot_core"
|
|
1024
|
+
version = "0.9.12"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"cfg-if",
|
|
1029
|
+
"libc",
|
|
1030
|
+
"redox_syscall",
|
|
1031
|
+
"smallvec",
|
|
1032
|
+
"windows-link",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "pin-project-lite"
|
|
1037
|
+
version = "0.2.17"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "pkg-config"
|
|
1043
|
+
version = "0.3.34"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "plotters"
|
|
1049
|
+
version = "0.3.7"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"num-traits",
|
|
1054
|
+
"plotters-backend",
|
|
1055
|
+
"plotters-svg",
|
|
1056
|
+
"wasm-bindgen",
|
|
1057
|
+
"web-sys",
|
|
1058
|
+
]
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "plotters-backend"
|
|
1062
|
+
version = "0.3.7"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "plotters-svg"
|
|
1068
|
+
version = "0.3.7"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"plotters-backend",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "portable-atomic"
|
|
1077
|
+
version = "1.15.0"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "powerfmt"
|
|
1083
|
+
version = "0.2.0"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "proc-macro2"
|
|
1089
|
+
version = "1.0.107"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"unicode-ident",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "pyfastlogging"
|
|
1098
|
+
version = "0.8.0"
|
|
1099
|
+
dependencies = [
|
|
1100
|
+
"fastlogging",
|
|
1101
|
+
"once_cell",
|
|
1102
|
+
"parking_lot",
|
|
1103
|
+
"pyo3",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "pyo3"
|
|
1108
|
+
version = "0.29.2"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"libc",
|
|
1113
|
+
"once_cell",
|
|
1114
|
+
"portable-atomic",
|
|
1115
|
+
"pyo3-build-config",
|
|
1116
|
+
"pyo3-ffi",
|
|
1117
|
+
"pyo3-macros",
|
|
1118
|
+
]
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "pyo3-build-config"
|
|
1122
|
+
version = "0.29.2"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"target-lexicon",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "pyo3-ffi"
|
|
1131
|
+
version = "0.29.2"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"libc",
|
|
1136
|
+
"pyo3-build-config",
|
|
1137
|
+
]
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "pyo3-macros"
|
|
1141
|
+
version = "0.29.2"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
1144
|
+
dependencies = [
|
|
1145
|
+
"proc-macro2",
|
|
1146
|
+
"pyo3-macros-backend",
|
|
1147
|
+
"quote",
|
|
1148
|
+
"syn 2.0.119",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "pyo3-macros-backend"
|
|
1153
|
+
version = "0.29.2"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"heck",
|
|
1158
|
+
"proc-macro2",
|
|
1159
|
+
"quote",
|
|
1160
|
+
"syn 2.0.119",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "quick-xml"
|
|
1165
|
+
version = "0.42.0"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "41b1177fdf999d2321d3fb46ff47159d9c1fb9ad66a4879f8c50a0b504615e9b"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"memchr",
|
|
1170
|
+
"serde",
|
|
1171
|
+
]
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "quote"
|
|
1175
|
+
version = "1.0.47"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1178
|
+
dependencies = [
|
|
1179
|
+
"proc-macro2",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "r-efi"
|
|
1184
|
+
version = "6.0.0"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "rand"
|
|
1190
|
+
version = "0.10.2"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"chacha20",
|
|
1195
|
+
"getrandom 0.4.3",
|
|
1196
|
+
"rand_core",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "rand_core"
|
|
1201
|
+
version = "0.10.1"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "rayon"
|
|
1207
|
+
version = "1.12.0"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"either",
|
|
1212
|
+
"rayon-core",
|
|
1213
|
+
]
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "rayon-core"
|
|
1217
|
+
version = "1.13.0"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1220
|
+
dependencies = [
|
|
1221
|
+
"crossbeam-deque",
|
|
1222
|
+
"crossbeam-utils",
|
|
1223
|
+
]
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "redox_syscall"
|
|
1227
|
+
version = "0.5.18"
|
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1230
|
+
dependencies = [
|
|
1231
|
+
"bitflags",
|
|
1232
|
+
]
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "regex"
|
|
1236
|
+
version = "1.13.1"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1239
|
+
dependencies = [
|
|
1240
|
+
"aho-corasick",
|
|
1241
|
+
"memchr",
|
|
1242
|
+
"regex-automata",
|
|
1243
|
+
"regex-syntax",
|
|
1244
|
+
]
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "regex-automata"
|
|
1248
|
+
version = "0.4.18"
|
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1251
|
+
dependencies = [
|
|
1252
|
+
"aho-corasick",
|
|
1253
|
+
"memchr",
|
|
1254
|
+
"regex-syntax",
|
|
1255
|
+
]
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "regex-syntax"
|
|
1259
|
+
version = "0.8.11"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "ring"
|
|
1265
|
+
version = "0.17.14"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1268
|
+
dependencies = [
|
|
1269
|
+
"cc",
|
|
1270
|
+
"cfg-if",
|
|
1271
|
+
"getrandom 0.2.17",
|
|
1272
|
+
"libc",
|
|
1273
|
+
"untrusted",
|
|
1274
|
+
"windows-sys 0.52.0",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "rustc_version"
|
|
1279
|
+
version = "0.4.1"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1282
|
+
dependencies = [
|
|
1283
|
+
"semver",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "rustix"
|
|
1288
|
+
version = "1.1.4"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1291
|
+
dependencies = [
|
|
1292
|
+
"bitflags",
|
|
1293
|
+
"errno",
|
|
1294
|
+
"libc",
|
|
1295
|
+
"linux-raw-sys",
|
|
1296
|
+
"windows-sys 0.61.2",
|
|
1297
|
+
]
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "rustversion"
|
|
1301
|
+
version = "1.0.23"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "ryu"
|
|
1307
|
+
version = "1.0.23"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "same-file"
|
|
1313
|
+
version = "1.0.6"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1316
|
+
dependencies = [
|
|
1317
|
+
"winapi-util",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "scopeguard"
|
|
1322
|
+
version = "1.2.0"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "scratch"
|
|
1328
|
+
version = "1.0.9"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2"
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "semver"
|
|
1334
|
+
version = "1.0.28"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "serde"
|
|
1340
|
+
version = "1.0.229"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"serde_core",
|
|
1345
|
+
"serde_derive",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "serde_core"
|
|
1350
|
+
version = "1.0.229"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"serde_derive",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1357
|
+
[[package]]
|
|
1358
|
+
name = "serde_derive"
|
|
1359
|
+
version = "1.0.229"
|
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1362
|
+
dependencies = [
|
|
1363
|
+
"proc-macro2",
|
|
1364
|
+
"quote",
|
|
1365
|
+
"syn 3.0.5",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "serde_json"
|
|
1370
|
+
version = "1.0.151"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"itoa",
|
|
1375
|
+
"memchr",
|
|
1376
|
+
"serde",
|
|
1377
|
+
"serde_core",
|
|
1378
|
+
"zmij",
|
|
1379
|
+
]
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "serde_spanned"
|
|
1383
|
+
version = "1.1.1"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"serde_core",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "serde_yaml"
|
|
1392
|
+
version = "0.9.34+deprecated"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"indexmap",
|
|
1397
|
+
"itoa",
|
|
1398
|
+
"ryu",
|
|
1399
|
+
"serde",
|
|
1400
|
+
"unsafe-libyaml",
|
|
1401
|
+
]
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "sha2"
|
|
1405
|
+
version = "0.10.9"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"cfg-if",
|
|
1410
|
+
"cpufeatures 0.2.17",
|
|
1411
|
+
"digest 0.10.7",
|
|
1412
|
+
]
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "sha2"
|
|
1416
|
+
version = "0.11.0"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"cfg-if",
|
|
1421
|
+
"cpufeatures 0.3.1",
|
|
1422
|
+
"digest 0.11.3",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "shlex"
|
|
1427
|
+
version = "2.0.1"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "simd-adler32"
|
|
1433
|
+
version = "0.3.10"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "simd_cesu8"
|
|
1439
|
+
version = "1.2.0"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
|
|
1442
|
+
dependencies = [
|
|
1443
|
+
"rustc_version",
|
|
1444
|
+
"simdutf8",
|
|
1445
|
+
]
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "simdutf8"
|
|
1449
|
+
version = "0.1.5"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "slab"
|
|
1455
|
+
version = "0.4.12"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1458
|
+
|
|
1459
|
+
[[package]]
|
|
1460
|
+
name = "smallvec"
|
|
1461
|
+
version = "1.16.1"
|
|
1462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
+
checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "spin"
|
|
1467
|
+
version = "0.9.9"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"lock_api",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "strsim"
|
|
1476
|
+
version = "0.11.1"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "syn"
|
|
1482
|
+
version = "2.0.119"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"proc-macro2",
|
|
1487
|
+
"quote",
|
|
1488
|
+
"unicode-ident",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "syn"
|
|
1493
|
+
version = "3.0.5"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"proc-macro2",
|
|
1498
|
+
"quote",
|
|
1499
|
+
"unicode-ident",
|
|
1500
|
+
]
|
|
1501
|
+
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "syslog"
|
|
1504
|
+
version = "7.0.0"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "019f1500a13379b7d051455df397c75770de6311a7a188a699499502704d9f10"
|
|
1507
|
+
dependencies = [
|
|
1508
|
+
"hostname",
|
|
1509
|
+
"libc",
|
|
1510
|
+
"log",
|
|
1511
|
+
"time",
|
|
1512
|
+
]
|
|
1513
|
+
|
|
1514
|
+
[[package]]
|
|
1515
|
+
name = "target-lexicon"
|
|
1516
|
+
version = "0.13.5"
|
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "tempfile"
|
|
1522
|
+
version = "3.27.0"
|
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1525
|
+
dependencies = [
|
|
1526
|
+
"fastrand",
|
|
1527
|
+
"getrandom 0.4.3",
|
|
1528
|
+
"once_cell",
|
|
1529
|
+
"rustix",
|
|
1530
|
+
"windows-sys 0.61.2",
|
|
1531
|
+
]
|
|
1532
|
+
|
|
1533
|
+
[[package]]
|
|
1534
|
+
name = "termcolor"
|
|
1535
|
+
version = "1.4.1"
|
|
1536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
1538
|
+
dependencies = [
|
|
1539
|
+
"winapi-util",
|
|
1540
|
+
]
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "thiserror"
|
|
1544
|
+
version = "1.0.69"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"thiserror-impl 1.0.69",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "thiserror"
|
|
1553
|
+
version = "2.0.20"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
1556
|
+
dependencies = [
|
|
1557
|
+
"thiserror-impl 2.0.20",
|
|
1558
|
+
]
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "thiserror-impl"
|
|
1562
|
+
version = "1.0.69"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1565
|
+
dependencies = [
|
|
1566
|
+
"proc-macro2",
|
|
1567
|
+
"quote",
|
|
1568
|
+
"syn 2.0.119",
|
|
1569
|
+
]
|
|
1570
|
+
|
|
1571
|
+
[[package]]
|
|
1572
|
+
name = "thiserror-impl"
|
|
1573
|
+
version = "2.0.20"
|
|
1574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1575
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
1576
|
+
dependencies = [
|
|
1577
|
+
"proc-macro2",
|
|
1578
|
+
"quote",
|
|
1579
|
+
"syn 3.0.5",
|
|
1580
|
+
]
|
|
1581
|
+
|
|
1582
|
+
[[package]]
|
|
1583
|
+
name = "thread-id"
|
|
1584
|
+
version = "5.1.0"
|
|
1585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
+
checksum = "2010d27add3f3240c1fef7959f46c814487b216baee662af53be645ba7831c07"
|
|
1587
|
+
dependencies = [
|
|
1588
|
+
"libc",
|
|
1589
|
+
"windows-sys 0.61.2",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "threadpool"
|
|
1594
|
+
version = "1.8.1"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
|
|
1597
|
+
dependencies = [
|
|
1598
|
+
"num_cpus",
|
|
1599
|
+
]
|
|
1600
|
+
|
|
1601
|
+
[[package]]
|
|
1602
|
+
name = "time"
|
|
1603
|
+
version = "0.3.55"
|
|
1604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
+
checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
|
|
1606
|
+
dependencies = [
|
|
1607
|
+
"deranged",
|
|
1608
|
+
"libc",
|
|
1609
|
+
"num-conv",
|
|
1610
|
+
"num_threads",
|
|
1611
|
+
"powerfmt",
|
|
1612
|
+
"serde_core",
|
|
1613
|
+
"time-core",
|
|
1614
|
+
"time-macros",
|
|
1615
|
+
]
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "time-core"
|
|
1619
|
+
version = "0.1.9"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
1622
|
+
|
|
1623
|
+
[[package]]
|
|
1624
|
+
name = "time-macros"
|
|
1625
|
+
version = "0.2.32"
|
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
+
checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
|
|
1628
|
+
dependencies = [
|
|
1629
|
+
"num-conv",
|
|
1630
|
+
"time-core",
|
|
1631
|
+
]
|
|
1632
|
+
|
|
1633
|
+
[[package]]
|
|
1634
|
+
name = "tinytemplate"
|
|
1635
|
+
version = "1.2.1"
|
|
1636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1638
|
+
dependencies = [
|
|
1639
|
+
"serde",
|
|
1640
|
+
"serde_json",
|
|
1641
|
+
]
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "toml"
|
|
1645
|
+
version = "0.9.12+spec-1.1.0"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
1648
|
+
dependencies = [
|
|
1649
|
+
"indexmap",
|
|
1650
|
+
"serde_core",
|
|
1651
|
+
"serde_spanned",
|
|
1652
|
+
"toml_datetime",
|
|
1653
|
+
"toml_parser",
|
|
1654
|
+
"toml_writer",
|
|
1655
|
+
"winnow 0.7.15",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "toml_datetime"
|
|
1660
|
+
version = "0.7.5+spec-1.1.0"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"serde_core",
|
|
1665
|
+
]
|
|
1666
|
+
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "toml_parser"
|
|
1669
|
+
version = "1.1.3+spec-1.1.0"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
1672
|
+
dependencies = [
|
|
1673
|
+
"winnow 1.0.4",
|
|
1674
|
+
]
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "toml_writer"
|
|
1678
|
+
version = "1.1.2+spec-1.1.0"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
1681
|
+
|
|
1682
|
+
[[package]]
|
|
1683
|
+
name = "typed-path"
|
|
1684
|
+
version = "0.12.3"
|
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "typenum"
|
|
1690
|
+
version = "1.20.1"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1693
|
+
|
|
1694
|
+
[[package]]
|
|
1695
|
+
name = "unicode-ident"
|
|
1696
|
+
version = "1.0.24"
|
|
1697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "unicode-width"
|
|
1702
|
+
version = "0.2.2"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "unsafe-libyaml"
|
|
1708
|
+
version = "0.2.11"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "untrusted"
|
|
1714
|
+
version = "0.9.0"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "utf8parse"
|
|
1720
|
+
version = "0.2.2"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1723
|
+
|
|
1724
|
+
[[package]]
|
|
1725
|
+
name = "version_check"
|
|
1726
|
+
version = "0.9.5"
|
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1729
|
+
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "walkdir"
|
|
1732
|
+
version = "2.5.0"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1735
|
+
dependencies = [
|
|
1736
|
+
"same-file",
|
|
1737
|
+
"winapi-util",
|
|
1738
|
+
]
|
|
1739
|
+
|
|
1740
|
+
[[package]]
|
|
1741
|
+
name = "wasi"
|
|
1742
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1745
|
+
|
|
1746
|
+
[[package]]
|
|
1747
|
+
name = "wasm-bindgen"
|
|
1748
|
+
version = "0.2.128"
|
|
1749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
+
checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
|
|
1751
|
+
dependencies = [
|
|
1752
|
+
"cfg-if",
|
|
1753
|
+
"once_cell",
|
|
1754
|
+
"rustversion",
|
|
1755
|
+
"wasm-bindgen-macro",
|
|
1756
|
+
"wasm-bindgen-shared",
|
|
1757
|
+
]
|
|
1758
|
+
|
|
1759
|
+
[[package]]
|
|
1760
|
+
name = "wasm-bindgen-macro"
|
|
1761
|
+
version = "0.2.128"
|
|
1762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
+
checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
|
|
1764
|
+
dependencies = [
|
|
1765
|
+
"quote",
|
|
1766
|
+
"wasm-bindgen-macro-support",
|
|
1767
|
+
]
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "wasm-bindgen-macro-support"
|
|
1771
|
+
version = "0.2.128"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
|
|
1774
|
+
dependencies = [
|
|
1775
|
+
"bumpalo",
|
|
1776
|
+
"proc-macro2",
|
|
1777
|
+
"quote",
|
|
1778
|
+
"syn 3.0.5",
|
|
1779
|
+
"wasm-bindgen-shared",
|
|
1780
|
+
]
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "wasm-bindgen-shared"
|
|
1784
|
+
version = "0.2.128"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
|
|
1787
|
+
dependencies = [
|
|
1788
|
+
"unicode-ident",
|
|
1789
|
+
]
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "web-sys"
|
|
1793
|
+
version = "0.3.105"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "9fbddc4a036f00ec4f18c83445bd3115cb306a91da554919a099d9222fe4a7f8"
|
|
1796
|
+
dependencies = [
|
|
1797
|
+
"js-sys",
|
|
1798
|
+
"wasm-bindgen",
|
|
1799
|
+
]
|
|
1800
|
+
|
|
1801
|
+
[[package]]
|
|
1802
|
+
name = "winapi"
|
|
1803
|
+
version = "0.3.9"
|
|
1804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1806
|
+
dependencies = [
|
|
1807
|
+
"winapi-i686-pc-windows-gnu",
|
|
1808
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1809
|
+
]
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1813
|
+
version = "0.4.0"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "winapi-util"
|
|
1819
|
+
version = "0.1.11"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1822
|
+
dependencies = [
|
|
1823
|
+
"windows-sys 0.61.2",
|
|
1824
|
+
]
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1828
|
+
version = "0.4.0"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "windows"
|
|
1834
|
+
version = "0.58.0"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
1837
|
+
dependencies = [
|
|
1838
|
+
"windows-core 0.58.0",
|
|
1839
|
+
"windows-targets",
|
|
1840
|
+
]
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "windows-core"
|
|
1844
|
+
version = "0.58.0"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
1847
|
+
dependencies = [
|
|
1848
|
+
"windows-implement 0.58.0",
|
|
1849
|
+
"windows-interface 0.58.0",
|
|
1850
|
+
"windows-result 0.2.0",
|
|
1851
|
+
"windows-strings 0.1.0",
|
|
1852
|
+
"windows-targets",
|
|
1853
|
+
]
|
|
1854
|
+
|
|
1855
|
+
[[package]]
|
|
1856
|
+
name = "windows-core"
|
|
1857
|
+
version = "0.62.2"
|
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1860
|
+
dependencies = [
|
|
1861
|
+
"windows-implement 0.60.2",
|
|
1862
|
+
"windows-interface 0.59.3",
|
|
1863
|
+
"windows-link",
|
|
1864
|
+
"windows-result 0.4.1",
|
|
1865
|
+
"windows-strings 0.5.1",
|
|
1866
|
+
]
|
|
1867
|
+
|
|
1868
|
+
[[package]]
|
|
1869
|
+
name = "windows-implement"
|
|
1870
|
+
version = "0.58.0"
|
|
1871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
1873
|
+
dependencies = [
|
|
1874
|
+
"proc-macro2",
|
|
1875
|
+
"quote",
|
|
1876
|
+
"syn 2.0.119",
|
|
1877
|
+
]
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "windows-implement"
|
|
1881
|
+
version = "0.60.2"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"proc-macro2",
|
|
1886
|
+
"quote",
|
|
1887
|
+
"syn 2.0.119",
|
|
1888
|
+
]
|
|
1889
|
+
|
|
1890
|
+
[[package]]
|
|
1891
|
+
name = "windows-interface"
|
|
1892
|
+
version = "0.58.0"
|
|
1893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
1895
|
+
dependencies = [
|
|
1896
|
+
"proc-macro2",
|
|
1897
|
+
"quote",
|
|
1898
|
+
"syn 2.0.119",
|
|
1899
|
+
]
|
|
1900
|
+
|
|
1901
|
+
[[package]]
|
|
1902
|
+
name = "windows-interface"
|
|
1903
|
+
version = "0.59.3"
|
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1906
|
+
dependencies = [
|
|
1907
|
+
"proc-macro2",
|
|
1908
|
+
"quote",
|
|
1909
|
+
"syn 2.0.119",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "windows-link"
|
|
1914
|
+
version = "0.2.1"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1917
|
+
|
|
1918
|
+
[[package]]
|
|
1919
|
+
name = "windows-registry"
|
|
1920
|
+
version = "0.6.1"
|
|
1921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
1923
|
+
dependencies = [
|
|
1924
|
+
"windows-link",
|
|
1925
|
+
"windows-result 0.4.1",
|
|
1926
|
+
"windows-strings 0.5.1",
|
|
1927
|
+
]
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "windows-result"
|
|
1931
|
+
version = "0.2.0"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
1934
|
+
dependencies = [
|
|
1935
|
+
"windows-targets",
|
|
1936
|
+
]
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "windows-result"
|
|
1940
|
+
version = "0.4.1"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1943
|
+
dependencies = [
|
|
1944
|
+
"windows-link",
|
|
1945
|
+
]
|
|
1946
|
+
|
|
1947
|
+
[[package]]
|
|
1948
|
+
name = "windows-strings"
|
|
1949
|
+
version = "0.1.0"
|
|
1950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
1952
|
+
dependencies = [
|
|
1953
|
+
"windows-result 0.2.0",
|
|
1954
|
+
"windows-targets",
|
|
1955
|
+
]
|
|
1956
|
+
|
|
1957
|
+
[[package]]
|
|
1958
|
+
name = "windows-strings"
|
|
1959
|
+
version = "0.5.1"
|
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1962
|
+
dependencies = [
|
|
1963
|
+
"windows-link",
|
|
1964
|
+
]
|
|
1965
|
+
|
|
1966
|
+
[[package]]
|
|
1967
|
+
name = "windows-sys"
|
|
1968
|
+
version = "0.52.0"
|
|
1969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1971
|
+
dependencies = [
|
|
1972
|
+
"windows-targets",
|
|
1973
|
+
]
|
|
1974
|
+
|
|
1975
|
+
[[package]]
|
|
1976
|
+
name = "windows-sys"
|
|
1977
|
+
version = "0.61.2"
|
|
1978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1980
|
+
dependencies = [
|
|
1981
|
+
"windows-link",
|
|
1982
|
+
]
|
|
1983
|
+
|
|
1984
|
+
[[package]]
|
|
1985
|
+
name = "windows-targets"
|
|
1986
|
+
version = "0.52.6"
|
|
1987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1989
|
+
dependencies = [
|
|
1990
|
+
"windows_aarch64_gnullvm",
|
|
1991
|
+
"windows_aarch64_msvc",
|
|
1992
|
+
"windows_i686_gnu",
|
|
1993
|
+
"windows_i686_gnullvm",
|
|
1994
|
+
"windows_i686_msvc",
|
|
1995
|
+
"windows_x86_64_gnu",
|
|
1996
|
+
"windows_x86_64_gnullvm",
|
|
1997
|
+
"windows_x86_64_msvc",
|
|
1998
|
+
]
|
|
1999
|
+
|
|
2000
|
+
[[package]]
|
|
2001
|
+
name = "windows_aarch64_gnullvm"
|
|
2002
|
+
version = "0.52.6"
|
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "windows_aarch64_msvc"
|
|
2008
|
+
version = "0.52.6"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "windows_i686_gnu"
|
|
2014
|
+
version = "0.52.6"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "windows_i686_gnullvm"
|
|
2020
|
+
version = "0.52.6"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2023
|
+
|
|
2024
|
+
[[package]]
|
|
2025
|
+
name = "windows_i686_msvc"
|
|
2026
|
+
version = "0.52.6"
|
|
2027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2029
|
+
|
|
2030
|
+
[[package]]
|
|
2031
|
+
name = "windows_x86_64_gnu"
|
|
2032
|
+
version = "0.52.6"
|
|
2033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "windows_x86_64_gnullvm"
|
|
2038
|
+
version = "0.52.6"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "windows_x86_64_msvc"
|
|
2044
|
+
version = "0.52.6"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "winnow"
|
|
2050
|
+
version = "0.7.15"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
2053
|
+
|
|
2054
|
+
[[package]]
|
|
2055
|
+
name = "winnow"
|
|
2056
|
+
version = "1.0.4"
|
|
2057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2058
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
2059
|
+
|
|
2060
|
+
[[package]]
|
|
2061
|
+
name = "zerocopy"
|
|
2062
|
+
version = "0.8.57"
|
|
2063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
+
checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
|
|
2065
|
+
dependencies = [
|
|
2066
|
+
"zerocopy-derive",
|
|
2067
|
+
]
|
|
2068
|
+
|
|
2069
|
+
[[package]]
|
|
2070
|
+
name = "zerocopy-derive"
|
|
2071
|
+
version = "0.8.57"
|
|
2072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
+
checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
|
|
2074
|
+
dependencies = [
|
|
2075
|
+
"proc-macro2",
|
|
2076
|
+
"quote",
|
|
2077
|
+
"syn 2.0.119",
|
|
2078
|
+
]
|
|
2079
|
+
|
|
2080
|
+
[[package]]
|
|
2081
|
+
name = "zip"
|
|
2082
|
+
version = "8.6.0"
|
|
2083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
|
+
checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
|
|
2085
|
+
dependencies = [
|
|
2086
|
+
"crc32fast",
|
|
2087
|
+
"flate2",
|
|
2088
|
+
"indexmap",
|
|
2089
|
+
"lzma-rust2",
|
|
2090
|
+
"memchr",
|
|
2091
|
+
"typed-path",
|
|
2092
|
+
"zopfli",
|
|
2093
|
+
"zstd",
|
|
2094
|
+
]
|
|
2095
|
+
|
|
2096
|
+
[[package]]
|
|
2097
|
+
name = "zlib-rs"
|
|
2098
|
+
version = "0.6.7"
|
|
2099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2100
|
+
checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
|
|
2101
|
+
|
|
2102
|
+
[[package]]
|
|
2103
|
+
name = "zmij"
|
|
2104
|
+
version = "1.0.23"
|
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
2107
|
+
|
|
2108
|
+
[[package]]
|
|
2109
|
+
name = "zopfli"
|
|
2110
|
+
version = "0.8.3"
|
|
2111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
2113
|
+
dependencies = [
|
|
2114
|
+
"bumpalo",
|
|
2115
|
+
"crc32fast",
|
|
2116
|
+
"log",
|
|
2117
|
+
"simd-adler32",
|
|
2118
|
+
]
|
|
2119
|
+
|
|
2120
|
+
[[package]]
|
|
2121
|
+
name = "zstd"
|
|
2122
|
+
version = "0.13.3"
|
|
2123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2124
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
2125
|
+
dependencies = [
|
|
2126
|
+
"zstd-safe",
|
|
2127
|
+
]
|
|
2128
|
+
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "zstd-safe"
|
|
2131
|
+
version = "7.3.0"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "64d80649ab6db9d9f6f9c80a40becd948eda4714a0a5ac8c4d157a32231c7882"
|
|
2134
|
+
dependencies = [
|
|
2135
|
+
"zstd-sys",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "zstd-sys"
|
|
2140
|
+
version = "2.1.0+zstd.1.5.7"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "0ef0a8027ec3ee71300ab3bcbcd0393f434aa72b91ca6d635a39941deae8eea0"
|
|
2143
|
+
dependencies = [
|
|
2144
|
+
"cc",
|
|
2145
|
+
"pkg-config",
|
|
2146
|
+
]
|