comparison libpam-sys/Cargo.lock @ 138:999bf07efbcb

Get rid of num_enum dependency in `libpam-sys-helpers`. Build times now fast!
author Paul Fisher <paul@pfish.zone>
date Thu, 03 Jul 2025 20:55:40 -0400
parents efbc235f01d3
children 4b3a5095f68c
comparison
equal deleted inserted replaced
137:88627c057709 138:999bf07efbcb
120 [[package]] 120 [[package]]
121 name = "either" 121 name = "either"
122 version = "1.15.0" 122 version = "1.15.0"
123 source = "registry+https://github.com/rust-lang/crates.io-index" 123 source = "registry+https://github.com/rust-lang/crates.io-index"
124 checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 124 checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
125
126 [[package]]
127 name = "equivalent"
128 version = "1.0.2"
129 source = "registry+https://github.com/rust-lang/crates.io-index"
130 checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
131 125
132 [[package]] 126 [[package]]
133 name = "garando_errors" 127 name = "garando_errors"
134 version = "0.1.0" 128 version = "0.1.0"
135 source = "registry+https://github.com/rust-lang/crates.io-index" 129 source = "registry+https://github.com/rust-lang/crates.io-index"
182 version = "0.3.2" 176 version = "0.3.2"
183 source = "registry+https://github.com/rust-lang/crates.io-index" 177 source = "registry+https://github.com/rust-lang/crates.io-index"
184 checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 178 checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
185 179
186 [[package]] 180 [[package]]
187 name = "hashbrown"
188 version = "0.15.4"
189 source = "registry+https://github.com/rust-lang/crates.io-index"
190 checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
191
192 [[package]]
193 name = "indexmap"
194 version = "2.10.0"
195 source = "registry+https://github.com/rust-lang/crates.io-index"
196 checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
197 dependencies = [
198 "equivalent",
199 "hashbrown",
200 ]
201
202 [[package]]
203 name = "indoc" 181 name = "indoc"
204 version = "2.0.6" 182 version = "2.0.6"
205 source = "registry+https://github.com/rust-lang/crates.io-index" 183 source = "registry+https://github.com/rust-lang/crates.io-index"
206 checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" 184 checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
207 185
240 name = "libpam-sys" 218 name = "libpam-sys"
241 version = "0.1.0" 219 version = "0.1.0"
242 dependencies = [ 220 dependencies = [
243 "libc", 221 "libc",
244 "libpam-sys-helpers", 222 "libpam-sys-helpers",
245 "num_enum",
246 ] 223 ]
247 224
248 [[package]] 225 [[package]]
249 name = "libpam-sys-helpers" 226 name = "libpam-sys-helpers"
250 version = "0.1.0" 227 version = "0.1.0"
251 dependencies = [ 228 dependencies = [
252 "libc", 229 "libc",
253 "num_enum",
254 ] 230 ]
255 231
256 [[package]] 232 [[package]]
257 name = "libpam-sys-test" 233 name = "libpam-sys-test"
258 version = "0.1.0" 234 version = "0.1.0"
304 "memchr", 280 "memchr",
305 "minimal-lexical", 281 "minimal-lexical",
306 ] 282 ]
307 283
308 [[package]] 284 [[package]]
309 name = "num_enum"
310 version = "0.7.4"
311 source = "registry+https://github.com/rust-lang/crates.io-index"
312 checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
313 dependencies = [
314 "num_enum_derive",
315 "rustversion",
316 ]
317
318 [[package]]
319 name = "num_enum_derive"
320 version = "0.7.4"
321 source = "registry+https://github.com/rust-lang/crates.io-index"
322 checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
323 dependencies = [
324 "proc-macro-crate",
325 "proc-macro2",
326 "quote",
327 "syn",
328 ]
329
330 [[package]]
331 name = "prettyplease" 285 name = "prettyplease"
332 version = "0.2.35" 286 version = "0.2.35"
333 source = "registry+https://github.com/rust-lang/crates.io-index" 287 source = "registry+https://github.com/rust-lang/crates.io-index"
334 checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a" 288 checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a"
335 dependencies = [ 289 dependencies = [
336 "proc-macro2", 290 "proc-macro2",
337 "syn", 291 "syn",
338 ]
339
340 [[package]]
341 name = "proc-macro-crate"
342 version = "3.3.0"
343 source = "registry+https://github.com/rust-lang/crates.io-index"
344 checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
345 dependencies = [
346 "toml_edit",
347 ] 292 ]
348 293
349 [[package]] 294 [[package]]
350 name = "proc-macro2" 295 name = "proc-macro2"
351 version = "1.0.95" 296 version = "1.0.95"
418 dependencies = [ 363 dependencies = [
419 "semver", 364 "semver",
420 ] 365 ]
421 366
422 [[package]] 367 [[package]]
423 name = "rustversion"
424 version = "1.0.21"
425 source = "registry+https://github.com/rust-lang/crates.io-index"
426 checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
427
428 [[package]]
429 name = "ryu" 368 name = "ryu"
430 version = "1.0.20" 369 version = "1.0.20"
431 source = "registry+https://github.com/rust-lang/crates.io-index" 370 source = "registry+https://github.com/rust-lang/crates.io-index"
432 checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 371 checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
433 372
512 checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 451 checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
513 dependencies = [ 452 dependencies = [
514 "proc-macro2", 453 "proc-macro2",
515 "quote", 454 "quote",
516 "syn", 455 "syn",
517 ]
518
519 [[package]]
520 name = "toml_datetime"
521 version = "0.6.11"
522 source = "registry+https://github.com/rust-lang/crates.io-index"
523 checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
524
525 [[package]]
526 name = "toml_edit"
527 version = "0.22.27"
528 source = "registry+https://github.com/rust-lang/crates.io-index"
529 checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
530 dependencies = [
531 "indexmap",
532 "toml_datetime",
533 "winnow",
534 ] 456 ]
535 457
536 [[package]] 458 [[package]]
537 name = "unicode-ident" 459 name = "unicode-ident"
538 version = "1.0.18" 460 version = "1.0.18"
634 [[package]] 556 [[package]]
635 name = "windows_x86_64_msvc" 557 name = "windows_x86_64_msvc"
636 version = "0.53.0" 558 version = "0.53.0"
637 source = "registry+https://github.com/rust-lang/crates.io-index" 559 source = "registry+https://github.com/rust-lang/crates.io-index"
638 checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 560 checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
639
640 [[package]]
641 name = "winnow"
642 version = "0.7.11"
643 source = "registry+https://github.com/rust-lang/crates.io-index"
644 checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
645 dependencies = [
646 "memchr",
647 ]