]> git.scottworley.com Git - voter/blob - Cargo.lock
Release 0.2.2
[voter] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "bitflags"
7 version = "1.3.2"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
10
11 [[package]]
12 name = "bytes"
13 version = "1.2.1"
14 source = "registry+https://github.com/rust-lang/crates.io-index"
15 checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
16
17 [[package]]
18 name = "cc"
19 version = "1.0.76"
20 source = "registry+https://github.com/rust-lang/crates.io-index"
21 checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f"
22
23 [[package]]
24 name = "cfg-if"
25 version = "1.0.0"
26 source = "registry+https://github.com/rust-lang/crates.io-index"
27 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
28
29 [[package]]
30 name = "cgi"
31 version = "0.6.1-rc1"
32 source = "git+https://github.com/chkno/rust-cgi.git?branch=issue18#c0372efb89d60c8e91a66d0a5aaebae4b583c986"
33 dependencies = [
34 "http",
35 ]
36
37 [[package]]
38 name = "errno"
39 version = "0.2.8"
40 source = "registry+https://github.com/rust-lang/crates.io-index"
41 checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
42 dependencies = [
43 "errno-dragonfly",
44 "libc",
45 "winapi",
46 ]
47
48 [[package]]
49 name = "errno-dragonfly"
50 version = "0.1.2"
51 source = "registry+https://github.com/rust-lang/crates.io-index"
52 checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
53 dependencies = [
54 "cc",
55 "libc",
56 ]
57
58 [[package]]
59 name = "fd-lock"
60 version = "3.0.8"
61 source = "registry+https://github.com/rust-lang/crates.io-index"
62 checksum = "bb21c69b9fea5e15dbc1049e4b77145dd0ba1c84019c488102de0dc4ea4b0a27"
63 dependencies = [
64 "cfg-if",
65 "rustix",
66 "windows-sys",
67 ]
68
69 [[package]]
70 name = "fnv"
71 version = "1.0.7"
72 source = "registry+https://github.com/rust-lang/crates.io-index"
73 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
74
75 [[package]]
76 name = "getrandom"
77 version = "0.2.8"
78 source = "registry+https://github.com/rust-lang/crates.io-index"
79 checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
80 dependencies = [
81 "cfg-if",
82 "libc",
83 "wasi",
84 ]
85
86 [[package]]
87 name = "http"
88 version = "0.2.8"
89 source = "registry+https://github.com/rust-lang/crates.io-index"
90 checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
91 dependencies = [
92 "bytes",
93 "fnv",
94 "itoa",
95 ]
96
97 [[package]]
98 name = "io-lifetimes"
99 version = "1.0.1"
100 source = "registry+https://github.com/rust-lang/crates.io-index"
101 checksum = "a7d367024b3f3414d8e01f437f704f41a9f64ab36f9067fa73e526ad4c763c87"
102 dependencies = [
103 "libc",
104 "windows-sys",
105 ]
106
107 [[package]]
108 name = "itoa"
109 version = "1.0.4"
110 source = "registry+https://github.com/rust-lang/crates.io-index"
111 checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
112
113 [[package]]
114 name = "libc"
115 version = "0.2.137"
116 source = "registry+https://github.com/rust-lang/crates.io-index"
117 checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
118
119 [[package]]
120 name = "linux-raw-sys"
121 version = "0.1.2"
122 source = "registry+https://github.com/rust-lang/crates.io-index"
123 checksum = "bb68f22743a3fb35785f1e7f844ca5a3de2dde5bd0c0ef5b372065814699b121"
124
125 [[package]]
126 name = "ppv-lite86"
127 version = "0.2.17"
128 source = "registry+https://github.com/rust-lang/crates.io-index"
129 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
130
131 [[package]]
132 name = "rand"
133 version = "0.8.5"
134 source = "registry+https://github.com/rust-lang/crates.io-index"
135 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
136 dependencies = [
137 "libc",
138 "rand_chacha",
139 "rand_core",
140 ]
141
142 [[package]]
143 name = "rand_chacha"
144 version = "0.3.1"
145 source = "registry+https://github.com/rust-lang/crates.io-index"
146 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
147 dependencies = [
148 "ppv-lite86",
149 "rand_core",
150 ]
151
152 [[package]]
153 name = "rand_core"
154 version = "0.6.4"
155 source = "registry+https://github.com/rust-lang/crates.io-index"
156 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
157 dependencies = [
158 "getrandom",
159 ]
160
161 [[package]]
162 name = "rustix"
163 version = "0.36.2"
164 source = "registry+https://github.com/rust-lang/crates.io-index"
165 checksum = "203974af07ea769452490ee8de3e5947971efc3a090dca8a779dd432d3fa46a7"
166 dependencies = [
167 "bitflags",
168 "errno",
169 "io-lifetimes",
170 "libc",
171 "linux-raw-sys",
172 "windows-sys",
173 ]
174
175 [[package]]
176 name = "voter"
177 version = "0.2.2"
178 dependencies = [
179 "cgi",
180 "fd-lock",
181 "rand",
182 ]
183
184 [[package]]
185 name = "wasi"
186 version = "0.11.0+wasi-snapshot-preview1"
187 source = "registry+https://github.com/rust-lang/crates.io-index"
188 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
189
190 [[package]]
191 name = "winapi"
192 version = "0.3.9"
193 source = "registry+https://github.com/rust-lang/crates.io-index"
194 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
195 dependencies = [
196 "winapi-i686-pc-windows-gnu",
197 "winapi-x86_64-pc-windows-gnu",
198 ]
199
200 [[package]]
201 name = "winapi-i686-pc-windows-gnu"
202 version = "0.4.0"
203 source = "registry+https://github.com/rust-lang/crates.io-index"
204 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
205
206 [[package]]
207 name = "winapi-x86_64-pc-windows-gnu"
208 version = "0.4.0"
209 source = "registry+https://github.com/rust-lang/crates.io-index"
210 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
211
212 [[package]]
213 name = "windows-sys"
214 version = "0.42.0"
215 source = "registry+https://github.com/rust-lang/crates.io-index"
216 checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
217 dependencies = [
218 "windows_aarch64_gnullvm",
219 "windows_aarch64_msvc",
220 "windows_i686_gnu",
221 "windows_i686_msvc",
222 "windows_x86_64_gnu",
223 "windows_x86_64_gnullvm",
224 "windows_x86_64_msvc",
225 ]
226
227 [[package]]
228 name = "windows_aarch64_gnullvm"
229 version = "0.42.0"
230 source = "registry+https://github.com/rust-lang/crates.io-index"
231 checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
232
233 [[package]]
234 name = "windows_aarch64_msvc"
235 version = "0.42.0"
236 source = "registry+https://github.com/rust-lang/crates.io-index"
237 checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
238
239 [[package]]
240 name = "windows_i686_gnu"
241 version = "0.42.0"
242 source = "registry+https://github.com/rust-lang/crates.io-index"
243 checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
244
245 [[package]]
246 name = "windows_i686_msvc"
247 version = "0.42.0"
248 source = "registry+https://github.com/rust-lang/crates.io-index"
249 checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
250
251 [[package]]
252 name = "windows_x86_64_gnu"
253 version = "0.42.0"
254 source = "registry+https://github.com/rust-lang/crates.io-index"
255 checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
256
257 [[package]]
258 name = "windows_x86_64_gnullvm"
259 version = "0.42.0"
260 source = "registry+https://github.com/rust-lang/crates.io-index"
261 checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
262
263 [[package]]
264 name = "windows_x86_64_msvc"
265 version = "0.42.0"
266 source = "registry+https://github.com/rust-lang/crates.io-index"
267 checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"