]> git.scottworley.com Git - gumdrone/blame - Cargo.lock
Begin
[gumdrone] / Cargo.lock
CommitLineData
9f986275
SW
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "bitflags"
7version = "2.8.0"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
10
11[[package]]
12name = "byteorder"
13version = "1.5.0"
14source = "registry+https://github.com/rust-lang/crates.io-index"
15checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
16
17[[package]]
18name = "bytes"
19version = "1.10.0"
20source = "registry+https://github.com/rust-lang/crates.io-index"
21checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9"
22
23[[package]]
24name = "cfg-if"
25version = "1.0.0"
26source = "registry+https://github.com/rust-lang/crates.io-index"
27checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
28
29[[package]]
30name = "cgi"
31version = "0.6.1-rc1"
32source = "git+https://github.com/chkno/rust-cgi.git?branch=issue18#8b5ef9e48f3073419952cff8f4e01baa9ef851e3"
33dependencies = [
34 "http",
35]
36
37[[package]]
38name = "errno"
39version = "0.3.10"
40source = "registry+https://github.com/rust-lang/crates.io-index"
41checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
42dependencies = [
43 "libc",
44 "windows-sys 0.59.0",
45]
46
47[[package]]
48name = "fd-lock"
49version = "3.0.13"
50source = "registry+https://github.com/rust-lang/crates.io-index"
51checksum = "ef033ed5e9bad94e55838ca0ca906db0e043f517adda0c8b79c7a8c66c93c1b5"
52dependencies = [
53 "cfg-if",
54 "rustix",
55 "windows-sys 0.48.0",
56]
57
58[[package]]
59name = "fnv"
60version = "1.0.7"
61source = "registry+https://github.com/rust-lang/crates.io-index"
62checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
63
64[[package]]
65name = "getrandom"
66version = "0.3.1"
67source = "registry+https://github.com/rust-lang/crates.io-index"
68checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
69dependencies = [
70 "cfg-if",
71 "libc",
72 "wasi",
73 "windows-targets 0.52.6",
74]
75
76[[package]]
77name = "gumdrone"
78version = "0.1.0"
79dependencies = [
80 "cgi",
81 "fd-lock",
82 "rand",
83]
84
85[[package]]
86name = "http"
87version = "0.2.12"
88source = "registry+https://github.com/rust-lang/crates.io-index"
89checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
90dependencies = [
91 "bytes",
92 "fnv",
93 "itoa",
94]
95
96[[package]]
97name = "itoa"
98version = "1.0.14"
99source = "registry+https://github.com/rust-lang/crates.io-index"
100checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
101
102[[package]]
103name = "libc"
104version = "0.2.169"
105source = "registry+https://github.com/rust-lang/crates.io-index"
106checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
107
108[[package]]
109name = "linux-raw-sys"
110version = "0.4.15"
111source = "registry+https://github.com/rust-lang/crates.io-index"
112checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
113
114[[package]]
115name = "ppv-lite86"
116version = "0.2.20"
117source = "registry+https://github.com/rust-lang/crates.io-index"
118checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
119dependencies = [
120 "zerocopy 0.7.35",
121]
122
123[[package]]
124name = "proc-macro2"
125version = "1.0.93"
126source = "registry+https://github.com/rust-lang/crates.io-index"
127checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
128dependencies = [
129 "unicode-ident",
130]
131
132[[package]]
133name = "quote"
134version = "1.0.38"
135source = "registry+https://github.com/rust-lang/crates.io-index"
136checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
137dependencies = [
138 "proc-macro2",
139]
140
141[[package]]
142name = "rand"
143version = "0.9.0"
144source = "registry+https://github.com/rust-lang/crates.io-index"
145checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
146dependencies = [
147 "rand_chacha",
148 "rand_core",
149 "zerocopy 0.8.17",
150]
151
152[[package]]
153name = "rand_chacha"
154version = "0.9.0"
155source = "registry+https://github.com/rust-lang/crates.io-index"
156checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
157dependencies = [
158 "ppv-lite86",
159 "rand_core",
160]
161
162[[package]]
163name = "rand_core"
164version = "0.9.0"
165source = "registry+https://github.com/rust-lang/crates.io-index"
166checksum = "b08f3c9802962f7e1b25113931d94f43ed9725bebc59db9d0c3e9a23b67e15ff"
167dependencies = [
168 "getrandom",
169 "zerocopy 0.8.17",
170]
171
172[[package]]
173name = "rustix"
174version = "0.38.44"
175source = "registry+https://github.com/rust-lang/crates.io-index"
176checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
177dependencies = [
178 "bitflags",
179 "errno",
180 "libc",
181 "linux-raw-sys",
182 "windows-sys 0.59.0",
183]
184
185[[package]]
186name = "syn"
187version = "2.0.98"
188source = "registry+https://github.com/rust-lang/crates.io-index"
189checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
190dependencies = [
191 "proc-macro2",
192 "quote",
193 "unicode-ident",
194]
195
196[[package]]
197name = "unicode-ident"
198version = "1.0.16"
199source = "registry+https://github.com/rust-lang/crates.io-index"
200checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
201
202[[package]]
203name = "wasi"
204version = "0.13.3+wasi-0.2.2"
205source = "registry+https://github.com/rust-lang/crates.io-index"
206checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
207dependencies = [
208 "wit-bindgen-rt",
209]
210
211[[package]]
212name = "windows-sys"
213version = "0.48.0"
214source = "registry+https://github.com/rust-lang/crates.io-index"
215checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
216dependencies = [
217 "windows-targets 0.48.5",
218]
219
220[[package]]
221name = "windows-sys"
222version = "0.59.0"
223source = "registry+https://github.com/rust-lang/crates.io-index"
224checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
225dependencies = [
226 "windows-targets 0.52.6",
227]
228
229[[package]]
230name = "windows-targets"
231version = "0.48.5"
232source = "registry+https://github.com/rust-lang/crates.io-index"
233checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
234dependencies = [
235 "windows_aarch64_gnullvm 0.48.5",
236 "windows_aarch64_msvc 0.48.5",
237 "windows_i686_gnu 0.48.5",
238 "windows_i686_msvc 0.48.5",
239 "windows_x86_64_gnu 0.48.5",
240 "windows_x86_64_gnullvm 0.48.5",
241 "windows_x86_64_msvc 0.48.5",
242]
243
244[[package]]
245name = "windows-targets"
246version = "0.52.6"
247source = "registry+https://github.com/rust-lang/crates.io-index"
248checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
249dependencies = [
250 "windows_aarch64_gnullvm 0.52.6",
251 "windows_aarch64_msvc 0.52.6",
252 "windows_i686_gnu 0.52.6",
253 "windows_i686_gnullvm",
254 "windows_i686_msvc 0.52.6",
255 "windows_x86_64_gnu 0.52.6",
256 "windows_x86_64_gnullvm 0.52.6",
257 "windows_x86_64_msvc 0.52.6",
258]
259
260[[package]]
261name = "windows_aarch64_gnullvm"
262version = "0.48.5"
263source = "registry+https://github.com/rust-lang/crates.io-index"
264checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
265
266[[package]]
267name = "windows_aarch64_gnullvm"
268version = "0.52.6"
269source = "registry+https://github.com/rust-lang/crates.io-index"
270checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
271
272[[package]]
273name = "windows_aarch64_msvc"
274version = "0.48.5"
275source = "registry+https://github.com/rust-lang/crates.io-index"
276checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
277
278[[package]]
279name = "windows_aarch64_msvc"
280version = "0.52.6"
281source = "registry+https://github.com/rust-lang/crates.io-index"
282checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
283
284[[package]]
285name = "windows_i686_gnu"
286version = "0.48.5"
287source = "registry+https://github.com/rust-lang/crates.io-index"
288checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
289
290[[package]]
291name = "windows_i686_gnu"
292version = "0.52.6"
293source = "registry+https://github.com/rust-lang/crates.io-index"
294checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
295
296[[package]]
297name = "windows_i686_gnullvm"
298version = "0.52.6"
299source = "registry+https://github.com/rust-lang/crates.io-index"
300checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
301
302[[package]]
303name = "windows_i686_msvc"
304version = "0.48.5"
305source = "registry+https://github.com/rust-lang/crates.io-index"
306checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
307
308[[package]]
309name = "windows_i686_msvc"
310version = "0.52.6"
311source = "registry+https://github.com/rust-lang/crates.io-index"
312checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
313
314[[package]]
315name = "windows_x86_64_gnu"
316version = "0.48.5"
317source = "registry+https://github.com/rust-lang/crates.io-index"
318checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
319
320[[package]]
321name = "windows_x86_64_gnu"
322version = "0.52.6"
323source = "registry+https://github.com/rust-lang/crates.io-index"
324checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
325
326[[package]]
327name = "windows_x86_64_gnullvm"
328version = "0.48.5"
329source = "registry+https://github.com/rust-lang/crates.io-index"
330checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
331
332[[package]]
333name = "windows_x86_64_gnullvm"
334version = "0.52.6"
335source = "registry+https://github.com/rust-lang/crates.io-index"
336checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
337
338[[package]]
339name = "windows_x86_64_msvc"
340version = "0.48.5"
341source = "registry+https://github.com/rust-lang/crates.io-index"
342checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
343
344[[package]]
345name = "windows_x86_64_msvc"
346version = "0.52.6"
347source = "registry+https://github.com/rust-lang/crates.io-index"
348checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
349
350[[package]]
351name = "wit-bindgen-rt"
352version = "0.33.0"
353source = "registry+https://github.com/rust-lang/crates.io-index"
354checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
355dependencies = [
356 "bitflags",
357]
358
359[[package]]
360name = "zerocopy"
361version = "0.7.35"
362source = "registry+https://github.com/rust-lang/crates.io-index"
363checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
364dependencies = [
365 "byteorder",
366 "zerocopy-derive 0.7.35",
367]
368
369[[package]]
370name = "zerocopy"
371version = "0.8.17"
372source = "registry+https://github.com/rust-lang/crates.io-index"
373checksum = "aa91407dacce3a68c56de03abe2760159582b846c6a4acd2f456618087f12713"
374dependencies = [
375 "zerocopy-derive 0.8.17",
376]
377
378[[package]]
379name = "zerocopy-derive"
380version = "0.7.35"
381source = "registry+https://github.com/rust-lang/crates.io-index"
382checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
383dependencies = [
384 "proc-macro2",
385 "quote",
386 "syn",
387]
388
389[[package]]
390name = "zerocopy-derive"
391version = "0.8.17"
392source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "06718a168365cad3d5ff0bb133aad346959a2074bd4a85c121255a11304a8626"
394dependencies = [
395 "proc-macro2",
396 "quote",
397 "syn",
398]