Mercurial > crates > nonstick
annotate Cargo.lock @ 109:bb465393621f
Minor cleanup and reorg.
- Use those nice new macros we just implemented.
- Straighten out the macro file.
- Move the `BinaryPayload` into `structs.rs`, leaving helpers behind.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Sat, 28 Jun 2025 02:49:35 -0400 |
parents | e97534be35e3 |
children | 2346fd501b7a |
rev | line source |
---|---|
107 | 1 # This file is automatically @generated by Cargo. |
2 # It is not intended for manual editing. | |
3 version = 3 | |
4 | |
5 [[package]] | |
6 name = "aho-corasick" | |
7 version = "1.1.3" | |
8 source = "registry+https://github.com/rust-lang/crates.io-index" | |
9 checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" | |
10 dependencies = [ | |
11 "memchr", | |
12 ] | |
13 | |
14 [[package]] | |
15 name = "anyhow" | |
16 version = "1.0.98" | |
17 source = "registry+https://github.com/rust-lang/crates.io-index" | |
18 checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" | |
19 | |
20 [[package]] | |
21 name = "autocfg" | |
22 version = "1.5.0" | |
23 source = "registry+https://github.com/rust-lang/crates.io-index" | |
24 checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" | |
25 | |
26 [[package]] | |
27 name = "bindgen" | |
28 version = "0.72.0" | |
29 source = "registry+https://github.com/rust-lang/crates.io-index" | |
30 checksum = "4f72209734318d0b619a5e0f5129918b848c416e122a3c4ce054e03cb87b726f" | |
31 dependencies = [ | |
32 "bitflags", | |
33 "cexpr", | |
34 "clang-sys", | |
109 | 35 "itertools", |
107 | 36 "log", |
37 "prettyplease", | |
38 "proc-macro2", | |
39 "quote", | |
40 "regex", | |
109 | 41 "rustc-hash", |
107 | 42 "shlex", |
43 "syn", | |
44 ] | |
45 | |
46 [[package]] | |
47 name = "bitflags" | |
48 version = "2.9.1" | |
49 source = "registry+https://github.com/rust-lang/crates.io-index" | |
50 checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" | |
51 | |
52 [[package]] | |
53 name = "cargo_metadata" | |
54 version = "0.9.1" | |
55 source = "registry+https://github.com/rust-lang/crates.io-index" | |
56 checksum = "46e3374c604fb39d1a2f35ed5e4a4e30e60d01fab49446e08f1b3e9a90aef202" | |
57 dependencies = [ | |
58 "semver", | |
59 "serde", | |
60 "serde_derive", | |
61 "serde_json", | |
62 ] | |
63 | |
64 [[package]] | |
65 name = "cexpr" | |
66 version = "0.6.0" | |
67 source = "registry+https://github.com/rust-lang/crates.io-index" | |
68 checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" | |
69 dependencies = [ | |
70 "nom", | |
71 ] | |
72 | |
73 [[package]] | |
74 name = "cfg-if" | |
75 version = "1.0.1" | |
76 source = "registry+https://github.com/rust-lang/crates.io-index" | |
77 checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" | |
78 | |
79 [[package]] | |
80 name = "clang-sys" | |
81 version = "1.8.1" | |
82 source = "registry+https://github.com/rust-lang/crates.io-index" | |
83 checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" | |
84 dependencies = [ | |
85 "glob", | |
86 "libc", | |
87 "libloading", | |
88 ] | |
89 | |
90 [[package]] | |
91 name = "either" | |
92 version = "1.15.0" | |
93 source = "registry+https://github.com/rust-lang/crates.io-index" | |
94 checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" | |
95 | |
96 [[package]] | |
97 name = "equivalent" | |
98 version = "1.0.2" | |
99 source = "registry+https://github.com/rust-lang/crates.io-index" | |
100 checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" | |
101 | |
102 [[package]] | |
103 name = "glob" | |
104 version = "0.3.2" | |
105 source = "registry+https://github.com/rust-lang/crates.io-index" | |
106 checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" | |
107 | |
108 [[package]] | |
109 name = "hashbrown" | |
110 version = "0.15.4" | |
111 source = "registry+https://github.com/rust-lang/crates.io-index" | |
112 checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" | |
113 | |
114 [[package]] | |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
115 name = "heck" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
116 version = "0.5.0" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
117 source = "registry+https://github.com/rust-lang/crates.io-index" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
118 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
119 |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
120 [[package]] |
107 | 121 name = "indexmap" |
122 version = "2.10.0" | |
123 source = "registry+https://github.com/rust-lang/crates.io-index" | |
124 checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" | |
125 dependencies = [ | |
126 "equivalent", | |
127 "hashbrown", | |
128 ] | |
129 | |
130 [[package]] | |
131 name = "itertools" | |
132 version = "0.13.0" | |
133 source = "registry+https://github.com/rust-lang/crates.io-index" | |
134 checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" | |
135 dependencies = [ | |
136 "either", | |
137 ] | |
138 | |
139 [[package]] | |
140 name = "itoa" | |
141 version = "1.0.15" | |
142 source = "registry+https://github.com/rust-lang/crates.io-index" | |
143 checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" | |
144 | |
145 [[package]] | |
146 name = "libc" | |
147 version = "0.2.174" | |
148 source = "registry+https://github.com/rust-lang/crates.io-index" | |
149 checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" | |
150 | |
151 [[package]] | |
152 name = "libloading" | |
153 version = "0.8.8" | |
154 source = "registry+https://github.com/rust-lang/crates.io-index" | |
155 checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" | |
156 dependencies = [ | |
157 "cfg-if", | |
109 | 158 "windows-targets", |
107 | 159 ] |
160 | |
161 [[package]] | |
162 name = "libpam-sys" | |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
163 version = "0.1.0" |
107 | 164 dependencies = [ |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
165 "libpam-sys-impls", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
166 ] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
167 |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
168 [[package]] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
169 name = "libpam-sys-impls" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
170 version = "0.0.1" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
171 dependencies = [ |
109 | 172 "bindgen", |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
173 "proc-macro2", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
174 "quote", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
175 "strum", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
176 "syn", |
107 | 177 ] |
178 | |
179 [[package]] | |
180 name = "log" | |
181 version = "0.4.27" | |
182 source = "registry+https://github.com/rust-lang/crates.io-index" | |
183 checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" | |
184 | |
185 [[package]] | |
186 name = "memchr" | |
187 version = "2.7.5" | |
188 source = "registry+https://github.com/rust-lang/crates.io-index" | |
189 checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" | |
190 | |
191 [[package]] | |
192 name = "memoffset" | |
193 version = "0.9.1" | |
194 source = "registry+https://github.com/rust-lang/crates.io-index" | |
195 checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" | |
196 dependencies = [ | |
197 "autocfg", | |
198 ] | |
199 | |
200 [[package]] | |
201 name = "minimal-lexical" | |
202 version = "0.2.1" | |
203 source = "registry+https://github.com/rust-lang/crates.io-index" | |
204 checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" | |
205 | |
206 [[package]] | |
207 name = "nom" | |
208 version = "7.1.3" | |
209 source = "registry+https://github.com/rust-lang/crates.io-index" | |
210 checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" | |
211 dependencies = [ | |
212 "memchr", | |
213 "minimal-lexical", | |
214 ] | |
215 | |
216 [[package]] | |
217 name = "nonstick" | |
218 version = "0.0.8-alpha0" | |
219 dependencies = [ | |
109 | 220 "bindgen", |
107 | 221 "bitflags", |
222 "libc", | |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
223 "libpam-sys", |
107 | 224 "memoffset", |
225 "num_enum", | |
226 "regex", | |
227 ] | |
228 | |
229 [[package]] | |
230 name = "nonstick-testharness" | |
231 version = "0.0.8-alpha0" | |
232 dependencies = [ | |
233 "anyhow", | |
234 "nonstick", | |
235 "test-cdylib", | |
236 "thiserror", | |
237 ] | |
238 | |
239 [[package]] | |
240 name = "num_enum" | |
241 version = "0.7.4" | |
242 source = "registry+https://github.com/rust-lang/crates.io-index" | |
243 checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" | |
244 dependencies = [ | |
245 "num_enum_derive", | |
246 "rustversion", | |
247 ] | |
248 | |
249 [[package]] | |
250 name = "num_enum_derive" | |
251 version = "0.7.4" | |
252 source = "registry+https://github.com/rust-lang/crates.io-index" | |
253 checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" | |
254 dependencies = [ | |
255 "proc-macro-crate", | |
256 "proc-macro2", | |
257 "quote", | |
258 "syn", | |
259 ] | |
260 | |
261 [[package]] | |
262 name = "prettyplease" | |
263 version = "0.2.35" | |
264 source = "registry+https://github.com/rust-lang/crates.io-index" | |
265 checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a" | |
266 dependencies = [ | |
267 "proc-macro2", | |
268 "syn", | |
269 ] | |
270 | |
271 [[package]] | |
272 name = "proc-macro-crate" | |
273 version = "3.3.0" | |
274 source = "registry+https://github.com/rust-lang/crates.io-index" | |
275 checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" | |
276 dependencies = [ | |
277 "toml_edit", | |
278 ] | |
279 | |
280 [[package]] | |
281 name = "proc-macro2" | |
282 version = "1.0.95" | |
283 source = "registry+https://github.com/rust-lang/crates.io-index" | |
284 checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" | |
285 dependencies = [ | |
286 "unicode-ident", | |
287 ] | |
288 | |
289 [[package]] | |
290 name = "quote" | |
291 version = "1.0.40" | |
292 source = "registry+https://github.com/rust-lang/crates.io-index" | |
293 checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" | |
294 dependencies = [ | |
295 "proc-macro2", | |
296 ] | |
297 | |
298 [[package]] | |
299 name = "regex" | |
300 version = "1.11.1" | |
301 source = "registry+https://github.com/rust-lang/crates.io-index" | |
302 checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" | |
303 dependencies = [ | |
304 "aho-corasick", | |
305 "memchr", | |
306 "regex-automata", | |
307 "regex-syntax", | |
308 ] | |
309 | |
310 [[package]] | |
311 name = "regex-automata" | |
312 version = "0.4.9" | |
313 source = "registry+https://github.com/rust-lang/crates.io-index" | |
314 checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" | |
315 dependencies = [ | |
316 "aho-corasick", | |
317 "memchr", | |
318 "regex-syntax", | |
319 ] | |
320 | |
321 [[package]] | |
322 name = "regex-syntax" | |
323 version = "0.8.5" | |
324 source = "registry+https://github.com/rust-lang/crates.io-index" | |
325 checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" | |
326 | |
327 [[package]] | |
328 name = "rustc-hash" | |
329 version = "2.1.1" | |
330 source = "registry+https://github.com/rust-lang/crates.io-index" | |
331 checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" | |
332 | |
333 [[package]] | |
334 name = "rustversion" | |
335 version = "1.0.21" | |
336 source = "registry+https://github.com/rust-lang/crates.io-index" | |
337 checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" | |
338 | |
339 [[package]] | |
340 name = "ryu" | |
341 version = "1.0.20" | |
342 source = "registry+https://github.com/rust-lang/crates.io-index" | |
343 checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" | |
344 | |
345 [[package]] | |
346 name = "semver" | |
347 version = "0.9.0" | |
348 source = "registry+https://github.com/rust-lang/crates.io-index" | |
349 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | |
350 dependencies = [ | |
351 "semver-parser", | |
352 "serde", | |
353 ] | |
354 | |
355 [[package]] | |
356 name = "semver-parser" | |
357 version = "0.7.0" | |
358 source = "registry+https://github.com/rust-lang/crates.io-index" | |
359 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | |
360 | |
361 [[package]] | |
362 name = "serde" | |
363 version = "1.0.219" | |
364 source = "registry+https://github.com/rust-lang/crates.io-index" | |
365 checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" | |
366 dependencies = [ | |
367 "serde_derive", | |
368 ] | |
369 | |
370 [[package]] | |
371 name = "serde_derive" | |
372 version = "1.0.219" | |
373 source = "registry+https://github.com/rust-lang/crates.io-index" | |
374 checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" | |
375 dependencies = [ | |
376 "proc-macro2", | |
377 "quote", | |
378 "syn", | |
379 ] | |
380 | |
381 [[package]] | |
382 name = "serde_json" | |
383 version = "1.0.140" | |
384 source = "registry+https://github.com/rust-lang/crates.io-index" | |
385 checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" | |
386 dependencies = [ | |
387 "itoa", | |
388 "memchr", | |
389 "ryu", | |
390 "serde", | |
391 ] | |
392 | |
393 [[package]] | |
394 name = "shlex" | |
395 version = "1.3.0" | |
396 source = "registry+https://github.com/rust-lang/crates.io-index" | |
397 checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" | |
398 | |
399 [[package]] | |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
400 name = "strum" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
401 version = "0.27.1" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
402 source = "registry+https://github.com/rust-lang/crates.io-index" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
403 checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
404 dependencies = [ |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
405 "strum_macros", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
406 ] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
407 |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
408 [[package]] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
409 name = "strum_macros" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
410 version = "0.27.1" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
411 source = "registry+https://github.com/rust-lang/crates.io-index" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
412 checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
413 dependencies = [ |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
414 "heck", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
415 "proc-macro2", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
416 "quote", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
417 "rustversion", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
418 "syn", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
419 ] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
420 |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
421 [[package]] |
107 | 422 name = "syn" |
423 version = "2.0.104" | |
424 source = "registry+https://github.com/rust-lang/crates.io-index" | |
425 checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" | |
426 dependencies = [ | |
427 "proc-macro2", | |
428 "quote", | |
429 "unicode-ident", | |
430 ] | |
431 | |
432 [[package]] | |
433 name = "test-cdylib" | |
434 version = "1.1.0" | |
435 source = "registry+https://github.com/rust-lang/crates.io-index" | |
436 checksum = "c8f41b1f729f5ff5177beab62e5a9251e318df8386e260ab3c944cff502ee78d" | |
437 dependencies = [ | |
438 "cargo_metadata", | |
439 "serde", | |
440 "serde_json", | |
441 "toml", | |
442 ] | |
443 | |
444 [[package]] | |
445 name = "thiserror" | |
446 version = "2.0.12" | |
447 source = "registry+https://github.com/rust-lang/crates.io-index" | |
448 checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" | |
449 dependencies = [ | |
450 "thiserror-impl", | |
451 ] | |
452 | |
453 [[package]] | |
454 name = "thiserror-impl" | |
455 version = "2.0.12" | |
456 source = "registry+https://github.com/rust-lang/crates.io-index" | |
457 checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" | |
458 dependencies = [ | |
459 "proc-macro2", | |
460 "quote", | |
461 "syn", | |
462 ] | |
463 | |
464 [[package]] | |
465 name = "toml" | |
466 version = "0.5.11" | |
467 source = "registry+https://github.com/rust-lang/crates.io-index" | |
468 checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" | |
469 dependencies = [ | |
470 "serde", | |
471 ] | |
472 | |
473 [[package]] | |
474 name = "toml_datetime" | |
475 version = "0.6.11" | |
476 source = "registry+https://github.com/rust-lang/crates.io-index" | |
477 checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" | |
478 | |
479 [[package]] | |
480 name = "toml_edit" | |
481 version = "0.22.27" | |
482 source = "registry+https://github.com/rust-lang/crates.io-index" | |
483 checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" | |
484 dependencies = [ | |
485 "indexmap", | |
486 "toml_datetime", | |
487 "winnow", | |
488 ] | |
489 | |
490 [[package]] | |
491 name = "unicode-ident" | |
492 version = "1.0.18" | |
493 source = "registry+https://github.com/rust-lang/crates.io-index" | |
494 checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" | |
495 | |
496 [[package]] | |
497 name = "windows-targets" | |
498 version = "0.53.2" | |
499 source = "registry+https://github.com/rust-lang/crates.io-index" | |
500 checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" | |
501 dependencies = [ | |
109 | 502 "windows_aarch64_gnullvm", |
503 "windows_aarch64_msvc", | |
504 "windows_i686_gnu", | |
505 "windows_i686_gnullvm", | |
506 "windows_i686_msvc", | |
507 "windows_x86_64_gnu", | |
508 "windows_x86_64_gnullvm", | |
509 "windows_x86_64_msvc", | |
107 | 510 ] |
511 | |
512 [[package]] | |
513 name = "windows_aarch64_gnullvm" | |
514 version = "0.53.0" | |
515 source = "registry+https://github.com/rust-lang/crates.io-index" | |
516 checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" | |
517 | |
518 [[package]] | |
519 name = "windows_aarch64_msvc" | |
520 version = "0.53.0" | |
521 source = "registry+https://github.com/rust-lang/crates.io-index" | |
522 checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" | |
523 | |
524 [[package]] | |
525 name = "windows_i686_gnu" | |
526 version = "0.53.0" | |
527 source = "registry+https://github.com/rust-lang/crates.io-index" | |
528 checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" | |
529 | |
530 [[package]] | |
531 name = "windows_i686_gnullvm" | |
532 version = "0.53.0" | |
533 source = "registry+https://github.com/rust-lang/crates.io-index" | |
534 checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" | |
535 | |
536 [[package]] | |
537 name = "windows_i686_msvc" | |
538 version = "0.53.0" | |
539 source = "registry+https://github.com/rust-lang/crates.io-index" | |
540 checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" | |
541 | |
542 [[package]] | |
543 name = "windows_x86_64_gnu" | |
544 version = "0.53.0" | |
545 source = "registry+https://github.com/rust-lang/crates.io-index" | |
546 checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" | |
547 | |
548 [[package]] | |
549 name = "windows_x86_64_gnullvm" | |
550 version = "0.53.0" | |
551 source = "registry+https://github.com/rust-lang/crates.io-index" | |
552 checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" | |
553 | |
554 [[package]] | |
555 name = "windows_x86_64_msvc" | |
556 version = "0.53.0" | |
557 source = "registry+https://github.com/rust-lang/crates.io-index" | |
558 checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" | |
559 | |
560 [[package]] | |
561 name = "winnow" | |
562 version = "0.7.11" | |
563 source = "registry+https://github.com/rust-lang/crates.io-index" | |
564 checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd" | |
565 dependencies = [ | |
566 "memchr", | |
567 ] |