annotate Cargo.lock @ 141:a508a69c068a

Remove a lot of Results from functions. Many functions are documented to only return failing Results when given improper inputs or when there is a memory allocation failure (which can be verified by looking at the source). In cases where we know our input is correct, we don't need to check for memory allocation errors for the same reason that Rust doesn't do so when you, e.g., create a new Vec.
author Paul Fisher <paul@pfish.zone>
date Sat, 05 Jul 2025 17:16:56 -0400
parents 999bf07efbcb
children 4b3a5095f68c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
1 # This file is automatically @generated by Cargo.
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
2 # It is not intended for manual editing.
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
3 version = 3
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
4
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
5 [[package]]
136
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
6 name = "anyhow"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
7 version = "1.0.98"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
8 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
9 checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
10
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
11 [[package]]
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
12 name = "autocfg"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
13 version = "1.5.0"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
14 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
15 checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
16
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
17 [[package]]
127
c77846f3a979 GET CTEST WORKING.
Paul Fisher <paul@pfish.zone>
parents: 116
diff changeset
18 name = "bitflags"
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
19 version = "2.9.1"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
20 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
21 checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
22
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
23 [[package]]
136
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
24 name = "cargo_metadata"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
25 version = "0.9.1"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
26 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
27 checksum = "46e3374c604fb39d1a2f35ed5e4a4e30e60d01fab49446e08f1b3e9a90aef202"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
28 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
29 "semver",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
30 "serde",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
31 "serde_derive",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
32 "serde_json",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
33 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
34
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
35 [[package]]
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
36 name = "equivalent"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
37 version = "1.0.2"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
38 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
39 checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
40
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
41 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
42 name = "hashbrown"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
43 version = "0.15.4"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
44 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
45 checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
46
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
47 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
48 name = "indexmap"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
49 version = "2.10.0"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
50 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
51 checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
52 dependencies = [
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
53 "equivalent",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
54 "hashbrown",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
55 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
56
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
57 [[package]]
136
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
58 name = "itoa"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
59 version = "1.0.15"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
60 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
61 checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
62
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
63 [[package]]
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
64 name = "libc"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
65 version = "0.2.174"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
66 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
67 checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
68
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
69 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
70 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
71 version = "0.1.0"
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
72 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
73 "libc",
136
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
74 "libpam-sys-helpers",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
75 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
76
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
77 [[package]]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
78 name = "libpam-sys-helpers"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
79 version = "0.1.0"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
80 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
81 "libc",
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
82 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
83
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
84 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
85 name = "memchr"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
86 version = "2.7.5"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
87 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
88 checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
89
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
90 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
91 name = "memoffset"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
92 version = "0.9.1"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
93 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
94 checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
95 dependencies = [
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
96 "autocfg",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
97 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
98
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
99 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
100 name = "nonstick"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
101 version = "0.0.8-alpha0"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
102 dependencies = [
135
b52594841480 Split libpam-sys into its own sub-workspace.
Paul Fisher <paul@pfish.zone>
parents: 134
diff changeset
103 "bitflags",
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
104 "libc",
108
e97534be35e3 Make some proc macros for doing cfg-like stuff for PAM impls.
Paul Fisher <paul@pfish.zone>
parents: 107
diff changeset
105 "libpam-sys",
136
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
106 "libpam-sys-helpers",
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
107 "memoffset",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
108 "num_enum",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
109 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
110
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
111 [[package]]
136
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
112 name = "nonstick-testharness"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
113 version = "0.0.8-alpha0"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
114 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
115 "anyhow",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
116 "nonstick",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
117 "test-cdylib",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
118 "thiserror",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
119 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
120
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
121 [[package]]
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
122 name = "num_enum"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
123 version = "0.7.4"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
124 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
125 checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
126 dependencies = [
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
127 "num_enum_derive",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
128 "rustversion",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
129 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
130
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
131 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
132 name = "num_enum_derive"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
133 version = "0.7.4"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
134 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
135 checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
136 dependencies = [
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
137 "proc-macro-crate",
134
6c1e1bdb4164 Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents: 131
diff changeset
138 "proc-macro2",
6c1e1bdb4164 Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents: 131
diff changeset
139 "quote",
6c1e1bdb4164 Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents: 131
diff changeset
140 "syn",
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
141 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
142
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
143 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
144 name = "proc-macro-crate"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
145 version = "3.3.0"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
146 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
147 checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
148 dependencies = [
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
149 "toml_edit",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
150 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
151
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
152 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
153 name = "proc-macro2"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
154 version = "1.0.95"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
155 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
156 checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
157 dependencies = [
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
158 "unicode-ident",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
159 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
160
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
161 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
162 name = "quote"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
163 version = "1.0.40"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
164 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
165 checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
166 dependencies = [
134
6c1e1bdb4164 Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents: 131
diff changeset
167 "proc-macro2",
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
168 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
169
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
170 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
171 name = "rustversion"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
172 version = "1.0.21"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
173 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
174 checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
175
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
176 [[package]]
136
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
177 name = "ryu"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
178 version = "1.0.20"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
179 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
180 checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
181
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
182 [[package]]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
183 name = "semver"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
184 version = "0.9.0"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
185 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
186 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
187 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
188 "semver-parser",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
189 "serde",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
190 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
191
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
192 [[package]]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
193 name = "semver-parser"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
194 version = "0.7.0"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
195 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
196 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
197
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
198 [[package]]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
199 name = "serde"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
200 version = "1.0.219"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
201 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
202 checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
203 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
204 "serde_derive",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
205 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
206
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
207 [[package]]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
208 name = "serde_derive"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
209 version = "1.0.219"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
210 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
211 checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
212 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
213 "proc-macro2",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
214 "quote",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
215 "syn",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
216 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
217
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
218 [[package]]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
219 name = "serde_json"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
220 version = "1.0.140"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
221 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
222 checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
223 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
224 "itoa",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
225 "memchr",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
226 "ryu",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
227 "serde",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
228 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
229
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
230 [[package]]
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
231 name = "syn"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
232 version = "2.0.104"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
233 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
234 checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
235 dependencies = [
134
6c1e1bdb4164 Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents: 131
diff changeset
236 "proc-macro2",
6c1e1bdb4164 Use standard #[cfg] directives rather than custom proc macros.
Paul Fisher <paul@pfish.zone>
parents: 131
diff changeset
237 "quote",
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
238 "unicode-ident",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
239 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
240
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
241 [[package]]
136
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
242 name = "test-cdylib"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
243 version = "1.1.0"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
244 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
245 checksum = "c8f41b1f729f5ff5177beab62e5a9251e318df8386e260ab3c944cff502ee78d"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
246 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
247 "cargo_metadata",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
248 "serde",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
249 "serde_json",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
250 "toml",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
251 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
252
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
253 [[package]]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
254 name = "thiserror"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
255 version = "2.0.12"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
256 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
257 checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
258 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
259 "thiserror-impl",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
260 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
261
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
262 [[package]]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
263 name = "thiserror-impl"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
264 version = "2.0.12"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
265 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
266 checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
267 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
268 "proc-macro2",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
269 "quote",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
270 "syn",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
271 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
272
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
273 [[package]]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
274 name = "toml"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
275 version = "0.5.11"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
276 source = "registry+https://github.com/rust-lang/crates.io-index"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
277 checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
278 dependencies = [
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
279 "serde",
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
280 ]
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
281
efbc235f01d3 Separate libpam-sys-helpers from libpam-sys.
Paul Fisher <paul@pfish.zone>
parents: 135
diff changeset
282 [[package]]
107
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
283 name = "toml_datetime"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
284 version = "0.6.11"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
285 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
286 checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
287
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
288 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
289 name = "toml_edit"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
290 version = "0.22.27"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
291 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
292 checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
293 dependencies = [
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
294 "indexmap",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
295 "toml_datetime",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
296 "winnow",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
297 ]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
298
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
299 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
300 name = "unicode-ident"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
301 version = "1.0.18"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
302 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
303 checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
304
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
305 [[package]]
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
306 name = "winnow"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
307 version = "0.7.11"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
308 source = "registry+https://github.com/rust-lang/crates.io-index"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
309 checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
310 dependencies = [
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
311 "memchr",
49c6633f6fd2 Add Cargo.lock file.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
312 ]