Self-hosted, federated location sharing app and server that prioritizes user privacy and security
end-to-end-encryption
location-sharing
privacy
self-hosted
federated
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "atomic-waker"
7version = "1.1.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
10
11[[package]]
12name = "axum"
13version = "0.8.6"
14source = "registry+https://github.com/rust-lang/crates.io-index"
15checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871"
16dependencies = [
17 "axum-core",
18 "bytes",
19 "form_urlencoded",
20 "futures-util",
21 "http",
22 "http-body",
23 "http-body-util",
24 "hyper",
25 "hyper-util",
26 "itoa",
27 "matchit",
28 "memchr",
29 "mime",
30 "percent-encoding",
31 "pin-project-lite",
32 "serde_core",
33 "serde_json",
34 "serde_path_to_error",
35 "serde_urlencoded",
36 "sync_wrapper",
37 "tokio",
38 "tower",
39 "tower-layer",
40 "tower-service",
41 "tracing",
42]
43
44[[package]]
45name = "axum-core"
46version = "0.5.5"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22"
49dependencies = [
50 "bytes",
51 "futures-core",
52 "http",
53 "http-body",
54 "http-body-util",
55 "mime",
56 "pin-project-lite",
57 "sync_wrapper",
58 "tower-layer",
59 "tower-service",
60 "tracing",
61]
62
63[[package]]
64name = "base64"
65version = "0.22.1"
66source = "registry+https://github.com/rust-lang/crates.io-index"
67checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
68
69[[package]]
70name = "bitflags"
71version = "2.10.0"
72source = "registry+https://github.com/rust-lang/crates.io-index"
73checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
74
75[[package]]
76name = "block-buffer"
77version = "0.11.0"
78source = "registry+https://github.com/rust-lang/crates.io-index"
79checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f"
80dependencies = [
81 "hybrid-array",
82]
83
84[[package]]
85name = "bytes"
86version = "1.10.1"
87source = "registry+https://github.com/rust-lang/crates.io-index"
88checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
89
90[[package]]
91name = "cfg-if"
92version = "1.0.4"
93source = "registry+https://github.com/rust-lang/crates.io-index"
94checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
95
96[[package]]
97name = "const-oid"
98version = "0.10.1"
99source = "registry+https://github.com/rust-lang/crates.io-index"
100checksum = "0dabb6555f92fb9ee4140454eb5dcd14c7960e1225c6d1a6cc361f032947713e"
101
102[[package]]
103name = "cpufeatures"
104version = "0.2.17"
105source = "registry+https://github.com/rust-lang/crates.io-index"
106checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
107dependencies = [
108 "libc",
109]
110
111[[package]]
112name = "crypto-common"
113version = "0.2.0-rc.5"
114source = "registry+https://github.com/rust-lang/crates.io-index"
115checksum = "919bd05924682a5480aec713596b9e2aabed3a0a6022fab6847f85a99e5f190a"
116dependencies = [
117 "hybrid-array",
118]
119
120[[package]]
121name = "curve25519-dalek"
122version = "5.0.0-pre.1"
123source = "registry+https://github.com/rust-lang/crates.io-index"
124checksum = "6f9200d1d13637f15a6acb71e758f64624048d85b31a5fdbfd8eca1e2687d0b7"
125dependencies = [
126 "cfg-if",
127 "cpufeatures",
128 "curve25519-dalek-derive",
129 "digest",
130 "fiat-crypto",
131 "rustc_version",
132 "subtle",
133 "zeroize",
134]
135
136[[package]]
137name = "curve25519-dalek-derive"
138version = "0.1.1"
139source = "registry+https://github.com/rust-lang/crates.io-index"
140checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
141dependencies = [
142 "proc-macro2",
143 "quote",
144 "syn",
145]
146
147[[package]]
148name = "der"
149version = "0.8.0-rc.9"
150source = "registry+https://github.com/rust-lang/crates.io-index"
151checksum = "e9d8dd2f26c86b27a2a8ea2767ec7f9df7a89516e4794e54ac01ee618dda3aa4"
152dependencies = [
153 "const-oid",
154]
155
156[[package]]
157name = "digest"
158version = "0.11.0-rc.4"
159source = "registry+https://github.com/rust-lang/crates.io-index"
160checksum = "ea390c940e465846d64775e55e3115d5dc934acb953de6f6e6360bc232fe2bf7"
161dependencies = [
162 "block-buffer",
163 "crypto-common",
164]
165
166[[package]]
167name = "ed25519"
168version = "3.0.0-rc.2"
169source = "registry+https://github.com/rust-lang/crates.io-index"
170checksum = "594435fe09e345ee388e4e8422072ff7dfeca8729389fbd997b3f5504c44cd47"
171dependencies = [
172 "pkcs8",
173 "signature",
174]
175
176[[package]]
177name = "ed25519-dalek"
178version = "3.0.0-pre.1"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "ad207ed88a133091f83224265eac21109930db09bedcad05d5252f2af2de20a1"
181dependencies = [
182 "curve25519-dalek",
183 "ed25519",
184 "sha2",
185 "subtle",
186 "zeroize",
187]
188
189[[package]]
190name = "fiat-crypto"
191version = "0.3.0"
192source = "registry+https://github.com/rust-lang/crates.io-index"
193checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
194
195[[package]]
196name = "fnv"
197version = "1.0.7"
198source = "registry+https://github.com/rust-lang/crates.io-index"
199checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
200
201[[package]]
202name = "form_urlencoded"
203version = "1.2.2"
204source = "registry+https://github.com/rust-lang/crates.io-index"
205checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
206dependencies = [
207 "percent-encoding",
208]
209
210[[package]]
211name = "futures-channel"
212version = "0.3.31"
213source = "registry+https://github.com/rust-lang/crates.io-index"
214checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
215dependencies = [
216 "futures-core",
217]
218
219[[package]]
220name = "futures-core"
221version = "0.3.31"
222source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
224
225[[package]]
226name = "futures-task"
227version = "0.3.31"
228source = "registry+https://github.com/rust-lang/crates.io-index"
229checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
230
231[[package]]
232name = "futures-util"
233version = "0.3.31"
234source = "registry+https://github.com/rust-lang/crates.io-index"
235checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
236dependencies = [
237 "futures-core",
238 "futures-task",
239 "pin-project-lite",
240 "pin-utils",
241]
242
243[[package]]
244name = "getrandom"
245version = "0.2.16"
246source = "registry+https://github.com/rust-lang/crates.io-index"
247checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
248dependencies = [
249 "cfg-if",
250 "libc",
251 "wasi",
252]
253
254[[package]]
255name = "http"
256version = "1.3.1"
257source = "registry+https://github.com/rust-lang/crates.io-index"
258checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
259dependencies = [
260 "bytes",
261 "fnv",
262 "itoa",
263]
264
265[[package]]
266name = "http-body"
267version = "1.0.1"
268source = "registry+https://github.com/rust-lang/crates.io-index"
269checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
270dependencies = [
271 "bytes",
272 "http",
273]
274
275[[package]]
276name = "http-body-util"
277version = "0.1.3"
278source = "registry+https://github.com/rust-lang/crates.io-index"
279checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
280dependencies = [
281 "bytes",
282 "futures-core",
283 "http",
284 "http-body",
285 "pin-project-lite",
286]
287
288[[package]]
289name = "httparse"
290version = "1.10.1"
291source = "registry+https://github.com/rust-lang/crates.io-index"
292checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
293
294[[package]]
295name = "httpdate"
296version = "1.0.3"
297source = "registry+https://github.com/rust-lang/crates.io-index"
298checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
299
300[[package]]
301name = "hybrid-array"
302version = "0.4.5"
303source = "registry+https://github.com/rust-lang/crates.io-index"
304checksum = "f471e0a81b2f90ffc0cb2f951ae04da57de8baa46fa99112b062a5173a5088d0"
305dependencies = [
306 "typenum",
307]
308
309[[package]]
310name = "hyper"
311version = "1.7.0"
312source = "registry+https://github.com/rust-lang/crates.io-index"
313checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
314dependencies = [
315 "atomic-waker",
316 "bytes",
317 "futures-channel",
318 "futures-core",
319 "http",
320 "http-body",
321 "httparse",
322 "httpdate",
323 "itoa",
324 "pin-project-lite",
325 "pin-utils",
326 "smallvec",
327 "tokio",
328]
329
330[[package]]
331name = "hyper-util"
332version = "0.1.17"
333source = "registry+https://github.com/rust-lang/crates.io-index"
334checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
335dependencies = [
336 "bytes",
337 "futures-core",
338 "http",
339 "http-body",
340 "hyper",
341 "pin-project-lite",
342 "tokio",
343 "tower-service",
344]
345
346[[package]]
347name = "itoa"
348version = "1.0.15"
349source = "registry+https://github.com/rust-lang/crates.io-index"
350checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
351
352[[package]]
353name = "libc"
354version = "0.2.177"
355source = "registry+https://github.com/rust-lang/crates.io-index"
356checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
357
358[[package]]
359name = "lock_api"
360version = "0.4.14"
361source = "registry+https://github.com/rust-lang/crates.io-index"
362checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
363dependencies = [
364 "scopeguard",
365]
366
367[[package]]
368name = "log"
369version = "0.4.28"
370source = "registry+https://github.com/rust-lang/crates.io-index"
371checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
372
373[[package]]
374name = "matchit"
375version = "0.8.4"
376source = "registry+https://github.com/rust-lang/crates.io-index"
377checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
378
379[[package]]
380name = "memchr"
381version = "2.7.6"
382source = "registry+https://github.com/rust-lang/crates.io-index"
383checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
384
385[[package]]
386name = "mime"
387version = "0.3.17"
388source = "registry+https://github.com/rust-lang/crates.io-index"
389checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
390
391[[package]]
392name = "mio"
393version = "1.1.0"
394source = "registry+https://github.com/rust-lang/crates.io-index"
395checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
396dependencies = [
397 "libc",
398 "wasi",
399 "windows-sys 0.61.2",
400]
401
402[[package]]
403name = "nanoid"
404version = "0.4.0"
405source = "registry+https://github.com/rust-lang/crates.io-index"
406checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
407dependencies = [
408 "rand",
409]
410
411[[package]]
412name = "once_cell"
413version = "1.21.3"
414source = "registry+https://github.com/rust-lang/crates.io-index"
415checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
416
417[[package]]
418name = "parking_lot"
419version = "0.12.5"
420source = "registry+https://github.com/rust-lang/crates.io-index"
421checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
422dependencies = [
423 "lock_api",
424 "parking_lot_core",
425]
426
427[[package]]
428name = "parking_lot_core"
429version = "0.9.12"
430source = "registry+https://github.com/rust-lang/crates.io-index"
431checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
432dependencies = [
433 "cfg-if",
434 "libc",
435 "redox_syscall",
436 "smallvec",
437 "windows-link",
438]
439
440[[package]]
441name = "percent-encoding"
442version = "2.3.2"
443source = "registry+https://github.com/rust-lang/crates.io-index"
444checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
445
446[[package]]
447name = "pin-project-lite"
448version = "0.2.16"
449source = "registry+https://github.com/rust-lang/crates.io-index"
450checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
451
452[[package]]
453name = "pin-utils"
454version = "0.1.0"
455source = "registry+https://github.com/rust-lang/crates.io-index"
456checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
457
458[[package]]
459name = "pkcs8"
460version = "0.11.0-rc.8"
461source = "registry+https://github.com/rust-lang/crates.io-index"
462checksum = "77089aec8290d0b7bb01b671b091095cf1937670725af4fd73d47249f03b12c0"
463dependencies = [
464 "der",
465 "spki",
466]
467
468[[package]]
469name = "ppv-lite86"
470version = "0.2.21"
471source = "registry+https://github.com/rust-lang/crates.io-index"
472checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
473dependencies = [
474 "zerocopy",
475]
476
477[[package]]
478name = "proc-macro2"
479version = "1.0.103"
480source = "registry+https://github.com/rust-lang/crates.io-index"
481checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
482dependencies = [
483 "unicode-ident",
484]
485
486[[package]]
487name = "quote"
488version = "1.0.42"
489source = "registry+https://github.com/rust-lang/crates.io-index"
490checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
491dependencies = [
492 "proc-macro2",
493]
494
495[[package]]
496name = "rand"
497version = "0.8.5"
498source = "registry+https://github.com/rust-lang/crates.io-index"
499checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
500dependencies = [
501 "libc",
502 "rand_chacha",
503 "rand_core",
504]
505
506[[package]]
507name = "rand_chacha"
508version = "0.3.1"
509source = "registry+https://github.com/rust-lang/crates.io-index"
510checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
511dependencies = [
512 "ppv-lite86",
513 "rand_core",
514]
515
516[[package]]
517name = "rand_core"
518version = "0.6.4"
519source = "registry+https://github.com/rust-lang/crates.io-index"
520checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
521dependencies = [
522 "getrandom",
523]
524
525[[package]]
526name = "redox_syscall"
527version = "0.5.18"
528source = "registry+https://github.com/rust-lang/crates.io-index"
529checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
530dependencies = [
531 "bitflags",
532]
533
534[[package]]
535name = "rust-server"
536version = "0.1.0"
537dependencies = [
538 "axum",
539 "base64",
540 "ed25519-dalek",
541 "nanoid",
542 "serde",
543 "serde_json",
544 "tokio",
545 "tower-http",
546]
547
548[[package]]
549name = "rustc_version"
550version = "0.4.1"
551source = "registry+https://github.com/rust-lang/crates.io-index"
552checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
553dependencies = [
554 "semver",
555]
556
557[[package]]
558name = "ryu"
559version = "1.0.20"
560source = "registry+https://github.com/rust-lang/crates.io-index"
561checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
562
563[[package]]
564name = "scopeguard"
565version = "1.2.0"
566source = "registry+https://github.com/rust-lang/crates.io-index"
567checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
568
569[[package]]
570name = "semver"
571version = "1.0.27"
572source = "registry+https://github.com/rust-lang/crates.io-index"
573checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
574
575[[package]]
576name = "serde"
577version = "1.0.228"
578source = "registry+https://github.com/rust-lang/crates.io-index"
579checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
580dependencies = [
581 "serde_core",
582 "serde_derive",
583]
584
585[[package]]
586name = "serde_core"
587version = "1.0.228"
588source = "registry+https://github.com/rust-lang/crates.io-index"
589checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
590dependencies = [
591 "serde_derive",
592]
593
594[[package]]
595name = "serde_derive"
596version = "1.0.228"
597source = "registry+https://github.com/rust-lang/crates.io-index"
598checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
599dependencies = [
600 "proc-macro2",
601 "quote",
602 "syn",
603]
604
605[[package]]
606name = "serde_json"
607version = "1.0.145"
608source = "registry+https://github.com/rust-lang/crates.io-index"
609checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
610dependencies = [
611 "itoa",
612 "memchr",
613 "ryu",
614 "serde",
615 "serde_core",
616]
617
618[[package]]
619name = "serde_path_to_error"
620version = "0.1.20"
621source = "registry+https://github.com/rust-lang/crates.io-index"
622checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
623dependencies = [
624 "itoa",
625 "serde",
626 "serde_core",
627]
628
629[[package]]
630name = "serde_urlencoded"
631version = "0.7.1"
632source = "registry+https://github.com/rust-lang/crates.io-index"
633checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
634dependencies = [
635 "form_urlencoded",
636 "itoa",
637 "ryu",
638 "serde",
639]
640
641[[package]]
642name = "sha2"
643version = "0.11.0-rc.3"
644source = "registry+https://github.com/rust-lang/crates.io-index"
645checksum = "19d43dc0354d88b791216bb5c1bfbb60c0814460cc653ae0ebd71f286d0bd927"
646dependencies = [
647 "cfg-if",
648 "cpufeatures",
649 "digest",
650]
651
652[[package]]
653name = "signal-hook-registry"
654version = "1.4.6"
655source = "registry+https://github.com/rust-lang/crates.io-index"
656checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
657dependencies = [
658 "libc",
659]
660
661[[package]]
662name = "signature"
663version = "3.0.0-rc.5"
664source = "registry+https://github.com/rust-lang/crates.io-index"
665checksum = "2a0251c9d6468f4ba853b6352b190fb7c1e405087779917c238445eb03993826"
666
667[[package]]
668name = "smallvec"
669version = "1.15.1"
670source = "registry+https://github.com/rust-lang/crates.io-index"
671checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
672
673[[package]]
674name = "socket2"
675version = "0.6.1"
676source = "registry+https://github.com/rust-lang/crates.io-index"
677checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
678dependencies = [
679 "libc",
680 "windows-sys 0.60.2",
681]
682
683[[package]]
684name = "spki"
685version = "0.8.0-rc.4"
686source = "registry+https://github.com/rust-lang/crates.io-index"
687checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80"
688dependencies = [
689 "der",
690]
691
692[[package]]
693name = "subtle"
694version = "2.6.1"
695source = "registry+https://github.com/rust-lang/crates.io-index"
696checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
697
698[[package]]
699name = "syn"
700version = "2.0.109"
701source = "registry+https://github.com/rust-lang/crates.io-index"
702checksum = "2f17c7e013e88258aa9543dcbe81aca68a667a9ac37cd69c9fbc07858bfe0e2f"
703dependencies = [
704 "proc-macro2",
705 "quote",
706 "unicode-ident",
707]
708
709[[package]]
710name = "sync_wrapper"
711version = "1.0.2"
712source = "registry+https://github.com/rust-lang/crates.io-index"
713checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
714
715[[package]]
716name = "tokio"
717version = "1.48.0"
718source = "registry+https://github.com/rust-lang/crates.io-index"
719checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
720dependencies = [
721 "bytes",
722 "libc",
723 "mio",
724 "parking_lot",
725 "pin-project-lite",
726 "signal-hook-registry",
727 "socket2",
728 "tokio-macros",
729 "windows-sys 0.61.2",
730]
731
732[[package]]
733name = "tokio-macros"
734version = "2.6.0"
735source = "registry+https://github.com/rust-lang/crates.io-index"
736checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
737dependencies = [
738 "proc-macro2",
739 "quote",
740 "syn",
741]
742
743[[package]]
744name = "tower"
745version = "0.5.2"
746source = "registry+https://github.com/rust-lang/crates.io-index"
747checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
748dependencies = [
749 "futures-core",
750 "futures-util",
751 "pin-project-lite",
752 "sync_wrapper",
753 "tokio",
754 "tower-layer",
755 "tower-service",
756 "tracing",
757]
758
759[[package]]
760name = "tower-http"
761version = "0.6.6"
762source = "registry+https://github.com/rust-lang/crates.io-index"
763checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
764dependencies = [
765 "bitflags",
766 "bytes",
767 "http",
768 "pin-project-lite",
769 "tower-layer",
770 "tower-service",
771]
772
773[[package]]
774name = "tower-layer"
775version = "0.3.3"
776source = "registry+https://github.com/rust-lang/crates.io-index"
777checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
778
779[[package]]
780name = "tower-service"
781version = "0.3.3"
782source = "registry+https://github.com/rust-lang/crates.io-index"
783checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
784
785[[package]]
786name = "tracing"
787version = "0.1.41"
788source = "registry+https://github.com/rust-lang/crates.io-index"
789checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
790dependencies = [
791 "log",
792 "pin-project-lite",
793 "tracing-core",
794]
795
796[[package]]
797name = "tracing-core"
798version = "0.1.34"
799source = "registry+https://github.com/rust-lang/crates.io-index"
800checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
801dependencies = [
802 "once_cell",
803]
804
805[[package]]
806name = "typenum"
807version = "1.19.0"
808source = "registry+https://github.com/rust-lang/crates.io-index"
809checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
810
811[[package]]
812name = "unicode-ident"
813version = "1.0.22"
814source = "registry+https://github.com/rust-lang/crates.io-index"
815checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
816
817[[package]]
818name = "wasi"
819version = "0.11.1+wasi-snapshot-preview1"
820source = "registry+https://github.com/rust-lang/crates.io-index"
821checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
822
823[[package]]
824name = "windows-link"
825version = "0.2.1"
826source = "registry+https://github.com/rust-lang/crates.io-index"
827checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
828
829[[package]]
830name = "windows-sys"
831version = "0.60.2"
832source = "registry+https://github.com/rust-lang/crates.io-index"
833checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
834dependencies = [
835 "windows-targets",
836]
837
838[[package]]
839name = "windows-sys"
840version = "0.61.2"
841source = "registry+https://github.com/rust-lang/crates.io-index"
842checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
843dependencies = [
844 "windows-link",
845]
846
847[[package]]
848name = "windows-targets"
849version = "0.53.5"
850source = "registry+https://github.com/rust-lang/crates.io-index"
851checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
852dependencies = [
853 "windows-link",
854 "windows_aarch64_gnullvm",
855 "windows_aarch64_msvc",
856 "windows_i686_gnu",
857 "windows_i686_gnullvm",
858 "windows_i686_msvc",
859 "windows_x86_64_gnu",
860 "windows_x86_64_gnullvm",
861 "windows_x86_64_msvc",
862]
863
864[[package]]
865name = "windows_aarch64_gnullvm"
866version = "0.53.1"
867source = "registry+https://github.com/rust-lang/crates.io-index"
868checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
869
870[[package]]
871name = "windows_aarch64_msvc"
872version = "0.53.1"
873source = "registry+https://github.com/rust-lang/crates.io-index"
874checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
875
876[[package]]
877name = "windows_i686_gnu"
878version = "0.53.1"
879source = "registry+https://github.com/rust-lang/crates.io-index"
880checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
881
882[[package]]
883name = "windows_i686_gnullvm"
884version = "0.53.1"
885source = "registry+https://github.com/rust-lang/crates.io-index"
886checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
887
888[[package]]
889name = "windows_i686_msvc"
890version = "0.53.1"
891source = "registry+https://github.com/rust-lang/crates.io-index"
892checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
893
894[[package]]
895name = "windows_x86_64_gnu"
896version = "0.53.1"
897source = "registry+https://github.com/rust-lang/crates.io-index"
898checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
899
900[[package]]
901name = "windows_x86_64_gnullvm"
902version = "0.53.1"
903source = "registry+https://github.com/rust-lang/crates.io-index"
904checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
905
906[[package]]
907name = "windows_x86_64_msvc"
908version = "0.53.1"
909source = "registry+https://github.com/rust-lang/crates.io-index"
910checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
911
912[[package]]
913name = "zerocopy"
914version = "0.8.27"
915source = "registry+https://github.com/rust-lang/crates.io-index"
916checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
917dependencies = [
918 "zerocopy-derive",
919]
920
921[[package]]
922name = "zerocopy-derive"
923version = "0.8.27"
924source = "registry+https://github.com/rust-lang/crates.io-index"
925checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
926dependencies = [
927 "proc-macro2",
928 "quote",
929 "syn",
930]
931
932[[package]]
933name = "zeroize"
934version = "1.8.2"
935source = "registry+https://github.com/rust-lang/crates.io-index"
936checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"