Mercurial > crates > nonstick
comparison Cargo.lock @ 148:4b3a5095f68c
Move libpam-sys helpers into their own library.
- Renames libpam-sys-helpers to libpam-sys-consts.
- Moves libpam-sys-helpers::helpers into libpam-sys-helpers,
which moves them completely out of libpam-sys's dependency chain.
- Moves the aliases from libpam-sys into libpam-sys::aliases.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Mon, 07 Jul 2025 12:11:43 -0400 |
parents | 999bf07efbcb |
children |
comparison
equal
deleted
inserted
replaced
147:4d7333337569 | 148:4b3a5095f68c |
---|---|
7 version = "1.0.98" | 7 version = "1.0.98" |
8 source = "registry+https://github.com/rust-lang/crates.io-index" | 8 source = "registry+https://github.com/rust-lang/crates.io-index" |
9 checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" | 9 checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" |
10 | 10 |
11 [[package]] | 11 [[package]] |
12 name = "autocfg" | |
13 version = "1.5.0" | |
14 source = "registry+https://github.com/rust-lang/crates.io-index" | |
15 checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" | |
16 | |
17 [[package]] | |
18 name = "bitflags" | 12 name = "bitflags" |
19 version = "2.9.1" | 13 version = "2.9.1" |
20 source = "registry+https://github.com/rust-lang/crates.io-index" | 14 source = "registry+https://github.com/rust-lang/crates.io-index" |
21 checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" | 15 checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" |
22 | 16 |
69 [[package]] | 63 [[package]] |
70 name = "libpam-sys" | 64 name = "libpam-sys" |
71 version = "0.1.0" | 65 version = "0.1.0" |
72 dependencies = [ | 66 dependencies = [ |
73 "libc", | 67 "libc", |
68 "libpam-sys-consts", | |
74 "libpam-sys-helpers", | 69 "libpam-sys-helpers", |
70 ] | |
71 | |
72 [[package]] | |
73 name = "libpam-sys-consts" | |
74 version = "0.1.0" | |
75 dependencies = [ | |
76 "libc", | |
75 ] | 77 ] |
76 | 78 |
77 [[package]] | 79 [[package]] |
78 name = "libpam-sys-helpers" | 80 name = "libpam-sys-helpers" |
79 version = "0.1.0" | 81 version = "0.1.0" |
80 dependencies = [ | 82 dependencies = [ |
81 "libc", | 83 "libpam-sys-consts", |
82 ] | 84 ] |
83 | 85 |
84 [[package]] | 86 [[package]] |
85 name = "memchr" | 87 name = "memchr" |
86 version = "2.7.5" | 88 version = "2.7.5" |
87 source = "registry+https://github.com/rust-lang/crates.io-index" | 89 source = "registry+https://github.com/rust-lang/crates.io-index" |
88 checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" | 90 checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" |
89 | |
90 [[package]] | |
91 name = "memoffset" | |
92 version = "0.9.1" | |
93 source = "registry+https://github.com/rust-lang/crates.io-index" | |
94 checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" | |
95 dependencies = [ | |
96 "autocfg", | |
97 ] | |
98 | 91 |
99 [[package]] | 92 [[package]] |
100 name = "nonstick" | 93 name = "nonstick" |
101 version = "0.0.8-alpha0" | 94 version = "0.0.8-alpha0" |
102 dependencies = [ | 95 dependencies = [ |
103 "bitflags", | 96 "bitflags", |
104 "libc", | 97 "libc", |
105 "libpam-sys", | 98 "libpam-sys", |
99 "libpam-sys-consts", | |
106 "libpam-sys-helpers", | 100 "libpam-sys-helpers", |
107 "memoffset", | |
108 "num_enum", | 101 "num_enum", |
109 ] | 102 ] |
110 | 103 |
111 [[package]] | 104 [[package]] |
112 name = "nonstick-testharness" | 105 name = "nonstick-testharness" |