Mercurial > crates > nonstick
comparison Cargo.lock @ 184:42f747774d94
Really get documentation stuff squared away.
Expand READMEs and polish off module documentation.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Thu, 31 Jul 2025 14:36:50 -0400 |
parents | a1bb1d013567 |
children | 18e865d366ba |
comparison
equal
deleted
inserted
replaced
183:4f46681b3f54 | 184:42f747774d94 |
---|---|
1 # This file is automatically @generated by Cargo. | 1 # This file is automatically @generated by Cargo. |
2 # It is not intended for manual editing. | 2 # It is not intended for manual editing. |
3 version = 3 | 3 version = 3 |
4 | |
5 [[package]] | |
6 name = "anyhow" | |
7 version = "1.0.98" | |
8 source = "registry+https://github.com/rust-lang/crates.io-index" | |
9 checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" | |
10 | 4 |
11 [[package]] | 5 [[package]] |
12 name = "bitflags" | 6 name = "bitflags" |
13 version = "2.9.1" | 7 version = "2.9.1" |
14 source = "registry+https://github.com/rust-lang/crates.io-index" | 8 source = "registry+https://github.com/rust-lang/crates.io-index" |
15 checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" | 9 checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" |
16 | |
17 [[package]] | |
18 name = "cargo_metadata" | |
19 version = "0.9.1" | |
20 source = "registry+https://github.com/rust-lang/crates.io-index" | |
21 checksum = "46e3374c604fb39d1a2f35ed5e4a4e30e60d01fab49446e08f1b3e9a90aef202" | |
22 dependencies = [ | |
23 "semver", | |
24 "serde", | |
25 "serde_derive", | |
26 "serde_json", | |
27 ] | |
28 | |
29 [[package]] | |
30 name = "itoa" | |
31 version = "1.0.15" | |
32 source = "registry+https://github.com/rust-lang/crates.io-index" | |
33 checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" | |
34 | 10 |
35 [[package]] | 11 [[package]] |
36 name = "libc" | 12 name = "libc" |
37 version = "0.2.174" | 13 version = "0.2.174" |
38 source = "registry+https://github.com/rust-lang/crates.io-index" | 14 source = "registry+https://github.com/rust-lang/crates.io-index" |
60 dependencies = [ | 36 dependencies = [ |
61 "libc", | 37 "libc", |
62 ] | 38 ] |
63 | 39 |
64 [[package]] | 40 [[package]] |
65 name = "memchr" | |
66 version = "2.7.5" | |
67 source = "registry+https://github.com/rust-lang/crates.io-index" | |
68 checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" | |
69 | |
70 [[package]] | |
71 name = "nonstick" | 41 name = "nonstick" |
72 version = "0.0.8-alpha0" | 42 version = "0.0.8-alpha0" |
73 dependencies = [ | 43 dependencies = [ |
74 "bitflags", | 44 "bitflags", |
75 "libc", | 45 "libc", |
80 | 50 |
81 [[package]] | 51 [[package]] |
82 name = "nonstick-testharness" | 52 name = "nonstick-testharness" |
83 version = "0.0.8-alpha0" | 53 version = "0.0.8-alpha0" |
84 dependencies = [ | 54 dependencies = [ |
85 "anyhow", | |
86 "libpam-sys-impls", | 55 "libpam-sys-impls", |
87 "nonstick", | 56 "nonstick", |
88 "test-cdylib", | |
89 "thiserror", | |
90 ] | 57 ] |
91 | |
92 [[package]] | |
93 name = "proc-macro2" | |
94 version = "1.0.95" | |
95 source = "registry+https://github.com/rust-lang/crates.io-index" | |
96 checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" | |
97 dependencies = [ | |
98 "unicode-ident", | |
99 ] | |
100 | |
101 [[package]] | |
102 name = "quote" | |
103 version = "1.0.40" | |
104 source = "registry+https://github.com/rust-lang/crates.io-index" | |
105 checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" | |
106 dependencies = [ | |
107 "proc-macro2", | |
108 ] | |
109 | |
110 [[package]] | |
111 name = "ryu" | |
112 version = "1.0.20" | |
113 source = "registry+https://github.com/rust-lang/crates.io-index" | |
114 checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" | |
115 | |
116 [[package]] | |
117 name = "semver" | |
118 version = "0.9.0" | |
119 source = "registry+https://github.com/rust-lang/crates.io-index" | |
120 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | |
121 dependencies = [ | |
122 "semver-parser", | |
123 "serde", | |
124 ] | |
125 | |
126 [[package]] | |
127 name = "semver-parser" | |
128 version = "0.7.0" | |
129 source = "registry+https://github.com/rust-lang/crates.io-index" | |
130 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | |
131 | |
132 [[package]] | |
133 name = "serde" | |
134 version = "1.0.219" | |
135 source = "registry+https://github.com/rust-lang/crates.io-index" | |
136 checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" | |
137 dependencies = [ | |
138 "serde_derive", | |
139 ] | |
140 | |
141 [[package]] | |
142 name = "serde_derive" | |
143 version = "1.0.219" | |
144 source = "registry+https://github.com/rust-lang/crates.io-index" | |
145 checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" | |
146 dependencies = [ | |
147 "proc-macro2", | |
148 "quote", | |
149 "syn", | |
150 ] | |
151 | |
152 [[package]] | |
153 name = "serde_json" | |
154 version = "1.0.140" | |
155 source = "registry+https://github.com/rust-lang/crates.io-index" | |
156 checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" | |
157 dependencies = [ | |
158 "itoa", | |
159 "memchr", | |
160 "ryu", | |
161 "serde", | |
162 ] | |
163 | |
164 [[package]] | |
165 name = "syn" | |
166 version = "2.0.104" | |
167 source = "registry+https://github.com/rust-lang/crates.io-index" | |
168 checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" | |
169 dependencies = [ | |
170 "proc-macro2", | |
171 "quote", | |
172 "unicode-ident", | |
173 ] | |
174 | |
175 [[package]] | |
176 name = "test-cdylib" | |
177 version = "1.1.0" | |
178 source = "registry+https://github.com/rust-lang/crates.io-index" | |
179 checksum = "c8f41b1f729f5ff5177beab62e5a9251e318df8386e260ab3c944cff502ee78d" | |
180 dependencies = [ | |
181 "cargo_metadata", | |
182 "serde", | |
183 "serde_json", | |
184 "toml", | |
185 ] | |
186 | |
187 [[package]] | |
188 name = "thiserror" | |
189 version = "2.0.12" | |
190 source = "registry+https://github.com/rust-lang/crates.io-index" | |
191 checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" | |
192 dependencies = [ | |
193 "thiserror-impl", | |
194 ] | |
195 | |
196 [[package]] | |
197 name = "thiserror-impl" | |
198 version = "2.0.12" | |
199 source = "registry+https://github.com/rust-lang/crates.io-index" | |
200 checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" | |
201 dependencies = [ | |
202 "proc-macro2", | |
203 "quote", | |
204 "syn", | |
205 ] | |
206 | |
207 [[package]] | |
208 name = "toml" | |
209 version = "0.5.11" | |
210 source = "registry+https://github.com/rust-lang/crates.io-index" | |
211 checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" | |
212 dependencies = [ | |
213 "serde", | |
214 ] | |
215 | |
216 [[package]] | |
217 name = "unicode-ident" | |
218 version = "1.0.18" | |
219 source = "registry+https://github.com/rust-lang/crates.io-index" | |
220 checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" |