Mercurial > crates > nonstick
annotate Cargo.lock @ 135:b52594841480
Split libpam-sys into its own sub-workspace.
Nonstick is basically a normal dependency of libpam-sys.
But libpam-sys is integrated packages that should be versioned together.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Thu, 03 Jul 2025 11:14:49 -0400 |
parents | 6c1e1bdb4164 |
children | efbc235f01d3 |
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 = "autocfg" | |
7 version = "1.5.0" | |
8 source = "registry+https://github.com/rust-lang/crates.io-index" | |
9 checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" | |
10 | |
11 [[package]] | |
127 | 12 name = "bitflags" |
107 | 13 version = "2.9.1" |
14 source = "registry+https://github.com/rust-lang/crates.io-index" | |
15 checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" | |
16 | |
17 [[package]] | |
18 name = "equivalent" | |
19 version = "1.0.2" | |
20 source = "registry+https://github.com/rust-lang/crates.io-index" | |
21 checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" | |
22 | |
23 [[package]] | |
24 name = "hashbrown" | |
25 version = "0.15.4" | |
26 source = "registry+https://github.com/rust-lang/crates.io-index" | |
27 checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" | |
28 | |
29 [[package]] | |
30 name = "indexmap" | |
31 version = "2.10.0" | |
32 source = "registry+https://github.com/rust-lang/crates.io-index" | |
33 checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" | |
34 dependencies = [ | |
35 "equivalent", | |
36 "hashbrown", | |
37 ] | |
38 | |
39 [[package]] | |
40 name = "libc" | |
41 version = "0.2.174" | |
42 source = "registry+https://github.com/rust-lang/crates.io-index" | |
43 checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" | |
44 | |
45 [[package]] | |
46 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
|
47 version = "0.1.0" |
107 | 48 dependencies = [ |
131
a632a8874131
Get all the Linux-PAM functions into libpam-sys, and get tests right.
Paul Fisher <paul@pfish.zone>
parents:
129
diff
changeset
|
49 "libc", |
a632a8874131
Get all the Linux-PAM functions into libpam-sys, and get tests right.
Paul Fisher <paul@pfish.zone>
parents:
129
diff
changeset
|
50 "num_enum", |
107 | 51 ] |
52 | |
53 [[package]] | |
54 name = "memchr" | |
55 version = "2.7.5" | |
56 source = "registry+https://github.com/rust-lang/crates.io-index" | |
57 checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" | |
58 | |
59 [[package]] | |
60 name = "memoffset" | |
61 version = "0.9.1" | |
62 source = "registry+https://github.com/rust-lang/crates.io-index" | |
63 checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" | |
64 dependencies = [ | |
65 "autocfg", | |
66 ] | |
67 | |
68 [[package]] | |
69 name = "nonstick" | |
70 version = "0.0.8-alpha0" | |
71 dependencies = [ | |
135
b52594841480
Split libpam-sys into its own sub-workspace.
Paul Fisher <paul@pfish.zone>
parents:
134
diff
changeset
|
72 "bitflags", |
107 | 73 "libc", |
108
e97534be35e3
Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents:
107
diff
changeset
|
74 "libpam-sys", |
107 | 75 "memoffset", |
76 "num_enum", | |
77 ] | |
78 | |
79 [[package]] | |
80 name = "num_enum" | |
81 version = "0.7.4" | |
82 source = "registry+https://github.com/rust-lang/crates.io-index" | |
83 checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" | |
84 dependencies = [ | |
85 "num_enum_derive", | |
86 "rustversion", | |
87 ] | |
88 | |
89 [[package]] | |
90 name = "num_enum_derive" | |
91 version = "0.7.4" | |
92 source = "registry+https://github.com/rust-lang/crates.io-index" | |
93 checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" | |
94 dependencies = [ | |
95 "proc-macro-crate", | |
134
6c1e1bdb4164
Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents:
131
diff
changeset
|
96 "proc-macro2", |
6c1e1bdb4164
Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents:
131
diff
changeset
|
97 "quote", |
6c1e1bdb4164
Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents:
131
diff
changeset
|
98 "syn", |
107 | 99 ] |
100 | |
101 [[package]] | |
102 name = "proc-macro-crate" | |
103 version = "3.3.0" | |
104 source = "registry+https://github.com/rust-lang/crates.io-index" | |
105 checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" | |
106 dependencies = [ | |
107 "toml_edit", | |
108 ] | |
109 | |
110 [[package]] | |
111 name = "proc-macro2" | |
112 version = "1.0.95" | |
113 source = "registry+https://github.com/rust-lang/crates.io-index" | |
114 checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" | |
115 dependencies = [ | |
116 "unicode-ident", | |
117 ] | |
118 | |
119 [[package]] | |
120 name = "quote" | |
121 version = "1.0.40" | |
122 source = "registry+https://github.com/rust-lang/crates.io-index" | |
123 checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" | |
124 dependencies = [ | |
134
6c1e1bdb4164
Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents:
131
diff
changeset
|
125 "proc-macro2", |
107 | 126 ] |
127 | |
128 [[package]] | |
129 name = "rustversion" | |
130 version = "1.0.21" | |
131 source = "registry+https://github.com/rust-lang/crates.io-index" | |
132 checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" | |
133 | |
134 [[package]] | |
135 name = "syn" | |
136 version = "2.0.104" | |
137 source = "registry+https://github.com/rust-lang/crates.io-index" | |
138 checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" | |
139 dependencies = [ | |
134
6c1e1bdb4164
Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents:
131
diff
changeset
|
140 "proc-macro2", |
6c1e1bdb4164
Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents:
131
diff
changeset
|
141 "quote", |
107 | 142 "unicode-ident", |
143 ] | |
144 | |
145 [[package]] | |
146 name = "toml_datetime" | |
147 version = "0.6.11" | |
148 source = "registry+https://github.com/rust-lang/crates.io-index" | |
149 checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" | |
150 | |
151 [[package]] | |
152 name = "toml_edit" | |
153 version = "0.22.27" | |
154 source = "registry+https://github.com/rust-lang/crates.io-index" | |
155 checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" | |
156 dependencies = [ | |
157 "indexmap", | |
158 "toml_datetime", | |
159 "winnow", | |
160 ] | |
161 | |
162 [[package]] | |
163 name = "unicode-ident" | |
164 version = "1.0.18" | |
165 source = "registry+https://github.com/rust-lang/crates.io-index" | |
166 checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" | |
167 | |
168 [[package]] | |
169 name = "winnow" | |
170 version = "0.7.11" | |
171 source = "registry+https://github.com/rust-lang/crates.io-index" | |
172 checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd" | |
173 dependencies = [ | |
174 "memchr", | |
175 ] |