Mercurial > crates > nonstick
annotate Cargo.lock @ 128:ad77f2af5ff4 default tip
Fix `rustc-check-cfg` in `libpam-sys/build.rs`.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Mon, 30 Jun 2025 23:00:53 -0400 |
parents | c77846f3a979 |
children |
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 = [ | |
127 | 32 "bitflags 2.9.1", |
107 | 33 "cexpr", |
34 "clang-sys", | |
109 | 35 "itertools", |
107 | 36 "log", |
37 "prettyplease", | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
38 "proc-macro2 1.0.95", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
39 "quote 1.0.40", |
107 | 40 "regex", |
109 | 41 "rustc-hash", |
107 | 42 "shlex", |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
43 "syn 2.0.104", |
107 | 44 ] |
45 | |
46 [[package]] | |
47 name = "bitflags" | |
127 | 48 version = "1.3.2" |
49 source = "registry+https://github.com/rust-lang/crates.io-index" | |
50 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | |
51 | |
52 [[package]] | |
53 name = "bitflags" | |
107 | 54 version = "2.9.1" |
55 source = "registry+https://github.com/rust-lang/crates.io-index" | |
56 checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" | |
57 | |
58 [[package]] | |
59 name = "cargo_metadata" | |
60 version = "0.9.1" | |
61 source = "registry+https://github.com/rust-lang/crates.io-index" | |
62 checksum = "46e3374c604fb39d1a2f35ed5e4a4e30e60d01fab49446e08f1b3e9a90aef202" | |
63 dependencies = [ | |
127 | 64 "semver 0.9.0", |
107 | 65 "serde", |
66 "serde_derive", | |
67 "serde_json", | |
68 ] | |
69 | |
70 [[package]] | |
127 | 71 name = "cc" |
72 version = "1.2.27" | |
73 source = "registry+https://github.com/rust-lang/crates.io-index" | |
74 checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc" | |
75 dependencies = [ | |
76 "shlex", | |
77 ] | |
78 | |
79 [[package]] | |
107 | 80 name = "cexpr" |
81 version = "0.6.0" | |
82 source = "registry+https://github.com/rust-lang/crates.io-index" | |
83 checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" | |
84 dependencies = [ | |
85 "nom", | |
86 ] | |
87 | |
88 [[package]] | |
89 name = "cfg-if" | |
127 | 90 version = "0.1.10" |
91 source = "registry+https://github.com/rust-lang/crates.io-index" | |
92 checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" | |
93 | |
94 [[package]] | |
95 name = "cfg-if" | |
107 | 96 version = "1.0.1" |
97 source = "registry+https://github.com/rust-lang/crates.io-index" | |
98 checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" | |
99 | |
100 [[package]] | |
101 name = "clang-sys" | |
102 version = "1.8.1" | |
103 source = "registry+https://github.com/rust-lang/crates.io-index" | |
104 checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" | |
105 dependencies = [ | |
106 "glob", | |
107 "libc", | |
108 "libloading", | |
109 ] | |
110 | |
111 [[package]] | |
127 | 112 name = "ctest" |
113 version = "0.4.11" | |
114 source = "registry+https://github.com/rust-lang/crates.io-index" | |
115 checksum = "2f18c94d081f9a0355affbeee3f8e677ce206e9aea89b952421f0be6bc588dde" | |
116 dependencies = [ | |
117 "cc", | |
118 "garando_syntax", | |
119 "indoc", | |
120 "rustc_version", | |
121 ] | |
122 | |
123 [[package]] | |
124 name = "dirs" | |
125 version = "2.0.2" | |
126 source = "registry+https://github.com/rust-lang/crates.io-index" | |
127 checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3" | |
128 dependencies = [ | |
129 "cfg-if 0.1.10", | |
130 "dirs-sys", | |
131 ] | |
132 | |
133 [[package]] | |
134 name = "dirs-sys" | |
135 version = "0.3.7" | |
136 source = "registry+https://github.com/rust-lang/crates.io-index" | |
137 checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" | |
138 dependencies = [ | |
139 "libc", | |
140 "redox_users", | |
141 "winapi", | |
142 ] | |
143 | |
144 [[package]] | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
145 name = "dlopen" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
146 version = "0.1.8" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
147 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
148 checksum = "71e80ad39f814a9abe68583cd50a2d45c8a67561c3361ab8da240587dda80937" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
149 dependencies = [ |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
150 "dlopen_derive", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
151 "lazy_static", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
152 "libc", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
153 "winapi", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
154 ] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
155 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
156 [[package]] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
157 name = "dlopen_derive" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
158 version = "0.1.4" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
159 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
160 checksum = "f236d9e1b1fbd81cea0f9cbdc8dcc7e8ebcd80e6659cd7cb2ad5f6c05946c581" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
161 dependencies = [ |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
162 "libc", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
163 "quote 0.6.13", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
164 "syn 0.15.44", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
165 ] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
166 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
167 [[package]] |
107 | 168 name = "either" |
169 version = "1.15.0" | |
170 source = "registry+https://github.com/rust-lang/crates.io-index" | |
171 checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" | |
172 | |
173 [[package]] | |
174 name = "equivalent" | |
175 version = "1.0.2" | |
176 source = "registry+https://github.com/rust-lang/crates.io-index" | |
177 checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" | |
178 | |
179 [[package]] | |
127 | 180 name = "garando_errors" |
181 version = "0.1.0" | |
182 source = "registry+https://github.com/rust-lang/crates.io-index" | |
183 checksum = "18495ec4aced5922809efe4d2862918ff0e8d75e122bde57bba9bae45965256a" | |
184 dependencies = [ | |
185 "garando_pos", | |
186 "libc", | |
187 "serde", | |
188 "term", | |
189 "unicode-xid 0.2.6", | |
190 ] | |
191 | |
192 [[package]] | |
193 name = "garando_pos" | |
194 version = "0.1.0" | |
195 source = "registry+https://github.com/rust-lang/crates.io-index" | |
196 checksum = "0c9386fc75dca486daefbbf5a8d2ea6f379237f95c9b982776159cd66f220aaf" | |
197 dependencies = [ | |
198 "serde", | |
199 ] | |
200 | |
201 [[package]] | |
202 name = "garando_syntax" | |
203 version = "0.1.1" | |
204 source = "registry+https://github.com/rust-lang/crates.io-index" | |
205 checksum = "1d8a383861d12fc78c251bbcb1ec252dd8338714ce02ab0cc393cfd02f40d32b" | |
206 dependencies = [ | |
207 "bitflags 1.3.2", | |
208 "garando_errors", | |
209 "garando_pos", | |
210 "log", | |
211 "serde", | |
212 "serde_json", | |
213 "unicode-xid 0.2.6", | |
214 ] | |
215 | |
216 [[package]] | |
217 name = "getrandom" | |
218 version = "0.2.16" | |
219 source = "registry+https://github.com/rust-lang/crates.io-index" | |
220 checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" | |
221 dependencies = [ | |
222 "cfg-if 1.0.1", | |
223 "libc", | |
224 "wasi", | |
225 ] | |
226 | |
227 [[package]] | |
107 | 228 name = "glob" |
229 version = "0.3.2" | |
230 source = "registry+https://github.com/rust-lang/crates.io-index" | |
231 checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" | |
232 | |
233 [[package]] | |
234 name = "hashbrown" | |
235 version = "0.15.4" | |
236 source = "registry+https://github.com/rust-lang/crates.io-index" | |
237 checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" | |
238 | |
239 [[package]] | |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
240 name = "heck" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
241 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
|
242 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
|
243 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
244 |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
245 [[package]] |
107 | 246 name = "indexmap" |
247 version = "2.10.0" | |
248 source = "registry+https://github.com/rust-lang/crates.io-index" | |
249 checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" | |
250 dependencies = [ | |
251 "equivalent", | |
252 "hashbrown", | |
253 ] | |
254 | |
255 [[package]] | |
127 | 256 name = "indoc" |
257 version = "2.0.6" | |
258 source = "registry+https://github.com/rust-lang/crates.io-index" | |
259 checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" | |
260 | |
261 [[package]] | |
107 | 262 name = "itertools" |
263 version = "0.13.0" | |
264 source = "registry+https://github.com/rust-lang/crates.io-index" | |
265 checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" | |
266 dependencies = [ | |
267 "either", | |
268 ] | |
269 | |
270 [[package]] | |
271 name = "itoa" | |
272 version = "1.0.15" | |
273 source = "registry+https://github.com/rust-lang/crates.io-index" | |
274 checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" | |
275 | |
276 [[package]] | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
277 name = "lazy_static" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
278 version = "1.5.0" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
279 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
280 checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
281 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
282 [[package]] |
107 | 283 name = "libc" |
284 version = "0.2.174" | |
285 source = "registry+https://github.com/rust-lang/crates.io-index" | |
286 checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" | |
287 | |
288 [[package]] | |
289 name = "libloading" | |
290 version = "0.8.8" | |
291 source = "registry+https://github.com/rust-lang/crates.io-index" | |
292 checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" | |
293 dependencies = [ | |
127 | 294 "cfg-if 1.0.1", |
109 | 295 "windows-targets", |
107 | 296 ] |
297 | |
298 [[package]] | |
299 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
|
300 version = "0.1.0" |
107 | 301 dependencies = [ |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
302 "libpam-sys-impls", |
127 | 303 "strum", |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
304 ] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
305 |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
306 [[package]] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
307 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
|
308 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
|
309 dependencies = [ |
109 | 310 "bindgen", |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
311 "dlopen", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
312 "proc-macro2 1.0.95", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
313 "quote 1.0.40", |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
314 "strum", |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
315 "syn 2.0.104", |
107 | 316 ] |
317 | |
318 [[package]] | |
110
2346fd501b7a
Add tests for constants and do other macro niceties.
Paul Fisher <paul@pfish.zone>
parents:
109
diff
changeset
|
319 name = "libpam-sys-test" |
2346fd501b7a
Add tests for constants and do other macro niceties.
Paul Fisher <paul@pfish.zone>
parents:
109
diff
changeset
|
320 version = "0.0.0" |
2346fd501b7a
Add tests for constants and do other macro niceties.
Paul Fisher <paul@pfish.zone>
parents:
109
diff
changeset
|
321 dependencies = [ |
2346fd501b7a
Add tests for constants and do other macro niceties.
Paul Fisher <paul@pfish.zone>
parents:
109
diff
changeset
|
322 "bindgen", |
127 | 323 "ctest", |
324 "libc", | |
110
2346fd501b7a
Add tests for constants and do other macro niceties.
Paul Fisher <paul@pfish.zone>
parents:
109
diff
changeset
|
325 "libpam-sys", |
2346fd501b7a
Add tests for constants and do other macro niceties.
Paul Fisher <paul@pfish.zone>
parents:
109
diff
changeset
|
326 "libpam-sys-impls", |
127 | 327 "proc-macro2 1.0.95", |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
328 "quote 1.0.40", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
329 "syn 2.0.104", |
110
2346fd501b7a
Add tests for constants and do other macro niceties.
Paul Fisher <paul@pfish.zone>
parents:
109
diff
changeset
|
330 ] |
2346fd501b7a
Add tests for constants and do other macro niceties.
Paul Fisher <paul@pfish.zone>
parents:
109
diff
changeset
|
331 |
2346fd501b7a
Add tests for constants and do other macro niceties.
Paul Fisher <paul@pfish.zone>
parents:
109
diff
changeset
|
332 [[package]] |
127 | 333 name = "libredox" |
334 version = "0.1.4" | |
335 source = "registry+https://github.com/rust-lang/crates.io-index" | |
336 checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638" | |
337 dependencies = [ | |
338 "bitflags 2.9.1", | |
339 "libc", | |
340 ] | |
341 | |
342 [[package]] | |
107 | 343 name = "log" |
344 version = "0.4.27" | |
345 source = "registry+https://github.com/rust-lang/crates.io-index" | |
346 checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" | |
347 | |
348 [[package]] | |
349 name = "memchr" | |
350 version = "2.7.5" | |
351 source = "registry+https://github.com/rust-lang/crates.io-index" | |
352 checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" | |
353 | |
354 [[package]] | |
355 name = "memoffset" | |
356 version = "0.9.1" | |
357 source = "registry+https://github.com/rust-lang/crates.io-index" | |
358 checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" | |
359 dependencies = [ | |
360 "autocfg", | |
361 ] | |
362 | |
363 [[package]] | |
364 name = "minimal-lexical" | |
365 version = "0.2.1" | |
366 source = "registry+https://github.com/rust-lang/crates.io-index" | |
367 checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" | |
368 | |
369 [[package]] | |
370 name = "nom" | |
371 version = "7.1.3" | |
372 source = "registry+https://github.com/rust-lang/crates.io-index" | |
373 checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" | |
374 dependencies = [ | |
375 "memchr", | |
376 "minimal-lexical", | |
377 ] | |
378 | |
379 [[package]] | |
380 name = "nonstick" | |
381 version = "0.0.8-alpha0" | |
382 dependencies = [ | |
109 | 383 "bindgen", |
127 | 384 "bitflags 2.9.1", |
107 | 385 "libc", |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
386 "libpam-sys", |
107 | 387 "memoffset", |
388 "num_enum", | |
389 "regex", | |
390 ] | |
391 | |
392 [[package]] | |
393 name = "nonstick-testharness" | |
394 version = "0.0.8-alpha0" | |
395 dependencies = [ | |
396 "anyhow", | |
397 "nonstick", | |
398 "test-cdylib", | |
127 | 399 "thiserror 2.0.12", |
107 | 400 ] |
401 | |
402 [[package]] | |
403 name = "num_enum" | |
404 version = "0.7.4" | |
405 source = "registry+https://github.com/rust-lang/crates.io-index" | |
406 checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" | |
407 dependencies = [ | |
408 "num_enum_derive", | |
409 "rustversion", | |
410 ] | |
411 | |
412 [[package]] | |
413 name = "num_enum_derive" | |
414 version = "0.7.4" | |
415 source = "registry+https://github.com/rust-lang/crates.io-index" | |
416 checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" | |
417 dependencies = [ | |
418 "proc-macro-crate", | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
419 "proc-macro2 1.0.95", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
420 "quote 1.0.40", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
421 "syn 2.0.104", |
107 | 422 ] |
423 | |
424 [[package]] | |
425 name = "prettyplease" | |
426 version = "0.2.35" | |
427 source = "registry+https://github.com/rust-lang/crates.io-index" | |
428 checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a" | |
429 dependencies = [ | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
430 "proc-macro2 1.0.95", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
431 "syn 2.0.104", |
107 | 432 ] |
433 | |
434 [[package]] | |
435 name = "proc-macro-crate" | |
436 version = "3.3.0" | |
437 source = "registry+https://github.com/rust-lang/crates.io-index" | |
438 checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" | |
439 dependencies = [ | |
440 "toml_edit", | |
441 ] | |
442 | |
443 [[package]] | |
444 name = "proc-macro2" | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
445 version = "0.4.30" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
446 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
447 checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
448 dependencies = [ |
127 | 449 "unicode-xid 0.1.0", |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
450 ] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
451 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
452 [[package]] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
453 name = "proc-macro2" |
107 | 454 version = "1.0.95" |
455 source = "registry+https://github.com/rust-lang/crates.io-index" | |
456 checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" | |
457 dependencies = [ | |
458 "unicode-ident", | |
459 ] | |
460 | |
461 [[package]] | |
462 name = "quote" | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
463 version = "0.6.13" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
464 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
465 checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
466 dependencies = [ |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
467 "proc-macro2 0.4.30", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
468 ] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
469 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
470 [[package]] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
471 name = "quote" |
107 | 472 version = "1.0.40" |
473 source = "registry+https://github.com/rust-lang/crates.io-index" | |
474 checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" | |
475 dependencies = [ | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
476 "proc-macro2 1.0.95", |
107 | 477 ] |
478 | |
479 [[package]] | |
127 | 480 name = "redox_users" |
481 version = "0.4.6" | |
482 source = "registry+https://github.com/rust-lang/crates.io-index" | |
483 checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" | |
484 dependencies = [ | |
485 "getrandom", | |
486 "libredox", | |
487 "thiserror 1.0.69", | |
488 ] | |
489 | |
490 [[package]] | |
107 | 491 name = "regex" |
492 version = "1.11.1" | |
493 source = "registry+https://github.com/rust-lang/crates.io-index" | |
494 checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" | |
495 dependencies = [ | |
496 "aho-corasick", | |
497 "memchr", | |
498 "regex-automata", | |
499 "regex-syntax", | |
500 ] | |
501 | |
502 [[package]] | |
503 name = "regex-automata" | |
504 version = "0.4.9" | |
505 source = "registry+https://github.com/rust-lang/crates.io-index" | |
506 checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" | |
507 dependencies = [ | |
508 "aho-corasick", | |
509 "memchr", | |
510 "regex-syntax", | |
511 ] | |
512 | |
513 [[package]] | |
514 name = "regex-syntax" | |
515 version = "0.8.5" | |
516 source = "registry+https://github.com/rust-lang/crates.io-index" | |
517 checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" | |
518 | |
519 [[package]] | |
520 name = "rustc-hash" | |
521 version = "2.1.1" | |
522 source = "registry+https://github.com/rust-lang/crates.io-index" | |
523 checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" | |
524 | |
525 [[package]] | |
127 | 526 name = "rustc_version" |
527 version = "0.4.1" | |
528 source = "registry+https://github.com/rust-lang/crates.io-index" | |
529 checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" | |
530 dependencies = [ | |
531 "semver 1.0.26", | |
532 ] | |
533 | |
534 [[package]] | |
107 | 535 name = "rustversion" |
536 version = "1.0.21" | |
537 source = "registry+https://github.com/rust-lang/crates.io-index" | |
538 checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" | |
539 | |
540 [[package]] | |
541 name = "ryu" | |
542 version = "1.0.20" | |
543 source = "registry+https://github.com/rust-lang/crates.io-index" | |
544 checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" | |
545 | |
546 [[package]] | |
547 name = "semver" | |
548 version = "0.9.0" | |
549 source = "registry+https://github.com/rust-lang/crates.io-index" | |
550 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | |
551 dependencies = [ | |
552 "semver-parser", | |
553 "serde", | |
554 ] | |
555 | |
556 [[package]] | |
127 | 557 name = "semver" |
558 version = "1.0.26" | |
559 source = "registry+https://github.com/rust-lang/crates.io-index" | |
560 checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" | |
561 | |
562 [[package]] | |
107 | 563 name = "semver-parser" |
564 version = "0.7.0" | |
565 source = "registry+https://github.com/rust-lang/crates.io-index" | |
566 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | |
567 | |
568 [[package]] | |
569 name = "serde" | |
570 version = "1.0.219" | |
571 source = "registry+https://github.com/rust-lang/crates.io-index" | |
572 checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" | |
573 dependencies = [ | |
574 "serde_derive", | |
575 ] | |
576 | |
577 [[package]] | |
578 name = "serde_derive" | |
579 version = "1.0.219" | |
580 source = "registry+https://github.com/rust-lang/crates.io-index" | |
581 checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" | |
582 dependencies = [ | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
583 "proc-macro2 1.0.95", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
584 "quote 1.0.40", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
585 "syn 2.0.104", |
107 | 586 ] |
587 | |
588 [[package]] | |
589 name = "serde_json" | |
590 version = "1.0.140" | |
591 source = "registry+https://github.com/rust-lang/crates.io-index" | |
592 checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" | |
593 dependencies = [ | |
594 "itoa", | |
595 "memchr", | |
596 "ryu", | |
597 "serde", | |
598 ] | |
599 | |
600 [[package]] | |
601 name = "shlex" | |
602 version = "1.3.0" | |
603 source = "registry+https://github.com/rust-lang/crates.io-index" | |
604 checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" | |
605 | |
606 [[package]] | |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
607 name = "strum" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
608 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
|
609 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
|
610 checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
611 dependencies = [ |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
612 "strum_macros", |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
613 ] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
614 |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
615 [[package]] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
616 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
|
617 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
|
618 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
|
619 checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8" |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
620 dependencies = [ |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
621 "heck", |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
622 "proc-macro2 1.0.95", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
623 "quote 1.0.40", |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
624 "rustversion", |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
625 "syn 2.0.104", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
626 ] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
627 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
628 [[package]] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
629 name = "syn" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
630 version = "0.15.44" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
631 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
632 checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
633 dependencies = [ |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
634 "proc-macro2 0.4.30", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
635 "quote 0.6.13", |
127 | 636 "unicode-xid 0.1.0", |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
637 ] |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
638 |
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
639 [[package]] |
107 | 640 name = "syn" |
641 version = "2.0.104" | |
642 source = "registry+https://github.com/rust-lang/crates.io-index" | |
643 checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" | |
644 dependencies = [ | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
645 "proc-macro2 1.0.95", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
646 "quote 1.0.40", |
107 | 647 "unicode-ident", |
648 ] | |
649 | |
650 [[package]] | |
127 | 651 name = "term" |
652 version = "0.6.1" | |
653 source = "registry+https://github.com/rust-lang/crates.io-index" | |
654 checksum = "c0863a3345e70f61d613eab32ee046ccd1bcc5f9105fe402c61fcd0c13eeb8b5" | |
655 dependencies = [ | |
656 "dirs", | |
657 "winapi", | |
658 ] | |
659 | |
660 [[package]] | |
107 | 661 name = "test-cdylib" |
662 version = "1.1.0" | |
663 source = "registry+https://github.com/rust-lang/crates.io-index" | |
664 checksum = "c8f41b1f729f5ff5177beab62e5a9251e318df8386e260ab3c944cff502ee78d" | |
665 dependencies = [ | |
666 "cargo_metadata", | |
667 "serde", | |
668 "serde_json", | |
669 "toml", | |
670 ] | |
671 | |
672 [[package]] | |
673 name = "thiserror" | |
127 | 674 version = "1.0.69" |
675 source = "registry+https://github.com/rust-lang/crates.io-index" | |
676 checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" | |
677 dependencies = [ | |
678 "thiserror-impl 1.0.69", | |
679 ] | |
680 | |
681 [[package]] | |
682 name = "thiserror" | |
107 | 683 version = "2.0.12" |
684 source = "registry+https://github.com/rust-lang/crates.io-index" | |
685 checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" | |
686 dependencies = [ | |
127 | 687 "thiserror-impl 2.0.12", |
688 ] | |
689 | |
690 [[package]] | |
691 name = "thiserror-impl" | |
692 version = "1.0.69" | |
693 source = "registry+https://github.com/rust-lang/crates.io-index" | |
694 checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" | |
695 dependencies = [ | |
696 "proc-macro2 1.0.95", | |
697 "quote 1.0.40", | |
698 "syn 2.0.104", | |
107 | 699 ] |
700 | |
701 [[package]] | |
702 name = "thiserror-impl" | |
703 version = "2.0.12" | |
704 source = "registry+https://github.com/rust-lang/crates.io-index" | |
705 checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" | |
706 dependencies = [ | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
707 "proc-macro2 1.0.95", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
708 "quote 1.0.40", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
709 "syn 2.0.104", |
107 | 710 ] |
711 | |
712 [[package]] | |
713 name = "toml" | |
714 version = "0.5.11" | |
715 source = "registry+https://github.com/rust-lang/crates.io-index" | |
716 checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" | |
717 dependencies = [ | |
718 "serde", | |
719 ] | |
720 | |
721 [[package]] | |
722 name = "toml_datetime" | |
723 version = "0.6.11" | |
724 source = "registry+https://github.com/rust-lang/crates.io-index" | |
725 checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" | |
726 | |
727 [[package]] | |
728 name = "toml_edit" | |
729 version = "0.22.27" | |
730 source = "registry+https://github.com/rust-lang/crates.io-index" | |
731 checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" | |
732 dependencies = [ | |
733 "indexmap", | |
734 "toml_datetime", | |
735 "winnow", | |
736 ] | |
737 | |
738 [[package]] | |
739 name = "unicode-ident" | |
740 version = "1.0.18" | |
741 source = "registry+https://github.com/rust-lang/crates.io-index" | |
742 checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" | |
743 | |
744 [[package]] | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
745 name = "unicode-xid" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
746 version = "0.1.0" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
747 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
748 checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
749 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
750 [[package]] |
127 | 751 name = "unicode-xid" |
752 version = "0.2.6" | |
753 source = "registry+https://github.com/rust-lang/crates.io-index" | |
754 checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" | |
755 | |
756 [[package]] | |
757 name = "wasi" | |
758 version = "0.11.1+wasi-snapshot-preview1" | |
759 source = "registry+https://github.com/rust-lang/crates.io-index" | |
760 checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" | |
761 | |
762 [[package]] | |
116
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
763 name = "winapi" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
764 version = "0.3.9" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
765 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
766 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
767 dependencies = [ |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
768 "winapi-i686-pc-windows-gnu", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
769 "winapi-x86_64-pc-windows-gnu", |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
770 ] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
771 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
772 [[package]] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
773 name = "winapi-i686-pc-windows-gnu" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
774 version = "0.4.0" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
775 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
776 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
777 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
778 [[package]] |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
779 name = "winapi-x86_64-pc-windows-gnu" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
780 version = "0.4.0" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
781 source = "registry+https://github.com/rust-lang/crates.io-index" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
782 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
783 |
a12706e42c9d
Logging, macros, and building:
Paul Fisher <paul@pfish.zone>
parents:
110
diff
changeset
|
784 [[package]] |
107 | 785 name = "windows-targets" |
786 version = "0.53.2" | |
787 source = "registry+https://github.com/rust-lang/crates.io-index" | |
788 checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" | |
789 dependencies = [ | |
109 | 790 "windows_aarch64_gnullvm", |
791 "windows_aarch64_msvc", | |
792 "windows_i686_gnu", | |
793 "windows_i686_gnullvm", | |
794 "windows_i686_msvc", | |
795 "windows_x86_64_gnu", | |
796 "windows_x86_64_gnullvm", | |
797 "windows_x86_64_msvc", | |
107 | 798 ] |
799 | |
800 [[package]] | |
801 name = "windows_aarch64_gnullvm" | |
802 version = "0.53.0" | |
803 source = "registry+https://github.com/rust-lang/crates.io-index" | |
804 checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" | |
805 | |
806 [[package]] | |
807 name = "windows_aarch64_msvc" | |
808 version = "0.53.0" | |
809 source = "registry+https://github.com/rust-lang/crates.io-index" | |
810 checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" | |
811 | |
812 [[package]] | |
813 name = "windows_i686_gnu" | |
814 version = "0.53.0" | |
815 source = "registry+https://github.com/rust-lang/crates.io-index" | |
816 checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" | |
817 | |
818 [[package]] | |
819 name = "windows_i686_gnullvm" | |
820 version = "0.53.0" | |
821 source = "registry+https://github.com/rust-lang/crates.io-index" | |
822 checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" | |
823 | |
824 [[package]] | |
825 name = "windows_i686_msvc" | |
826 version = "0.53.0" | |
827 source = "registry+https://github.com/rust-lang/crates.io-index" | |
828 checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" | |
829 | |
830 [[package]] | |
831 name = "windows_x86_64_gnu" | |
832 version = "0.53.0" | |
833 source = "registry+https://github.com/rust-lang/crates.io-index" | |
834 checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" | |
835 | |
836 [[package]] | |
837 name = "windows_x86_64_gnullvm" | |
838 version = "0.53.0" | |
839 source = "registry+https://github.com/rust-lang/crates.io-index" | |
840 checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" | |
841 | |
842 [[package]] | |
843 name = "windows_x86_64_msvc" | |
844 version = "0.53.0" | |
845 source = "registry+https://github.com/rust-lang/crates.io-index" | |
846 checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" | |
847 | |
848 [[package]] | |
849 name = "winnow" | |
850 version = "0.7.11" | |
851 source = "registry+https://github.com/rust-lang/crates.io-index" | |
852 checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd" | |
853 dependencies = [ | |
854 "memchr", | |
855 ] |