datatrash/Cargo.lock

2851 lines
69 KiB
Plaintext
Raw Normal View History

2020-07-08 19:26:46 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2024-12-13 15:36:14 +00:00
version = 4
2021-08-18 21:22:50 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "actix-codec"
2024-03-29 11:04:40 +00:00
version = "0.5.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
2020-07-08 19:26:46 +00:00
dependencies = [
2024-10-23 11:41:11 +00:00
"bitflags",
2022-02-26 23:34:57 +00:00
"bytes",
2020-07-08 19:26:46 +00:00
"futures-core",
"futures-sink",
2022-02-26 23:34:57 +00:00
"memchr",
"pin-project-lite",
2020-07-08 19:26:46 +00:00
"tokio",
2022-04-23 22:37:20 +00:00
"tokio-util",
2023-05-24 08:53:56 +00:00
"tracing",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "actix-files"
2024-06-09 20:35:14 +00:00
version = "0.6.6"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "0773d59061dedb49a8aed04c67291b9d8cf2fe0b60130a381aab53c6dd86e9be"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"actix-http",
2020-07-08 19:26:46 +00:00
"actix-service",
2022-02-26 23:34:57 +00:00
"actix-utils",
2020-07-08 19:26:46 +00:00
"actix-web",
2024-10-23 11:41:11 +00:00
"bitflags",
2022-02-26 23:34:57 +00:00
"bytes",
2020-07-08 19:26:46 +00:00
"derive_more",
"futures-core",
2022-02-26 23:34:57 +00:00
"http-range",
2020-07-08 19:26:46 +00:00
"log",
"mime",
"mime_guess",
"percent-encoding",
2022-02-26 23:34:57 +00:00
"pin-project-lite",
2024-03-29 11:04:40 +00:00
"v_htmlescape",
2020-07-08 19:26:46 +00:00
]
2022-08-21 16:44:12 +00:00
[[package]]
name = "actix-governor"
2024-12-13 15:36:14 +00:00
version = "0.8.0"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "4a0cb8586d3fa368d00ef643e8ef77f5d3d5dfe5c7b333415a556bc12eb1c41a"
2022-08-21 16:44:12 +00:00
dependencies = [
"actix-http",
"actix-web",
"futures",
"governor",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "actix-http"
2024-10-23 11:41:11 +00:00
version = "3.9.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4"
2020-07-08 19:26:46 +00:00
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
"ahash",
2024-10-23 11:41:11 +00:00
"base64",
"bitflags",
2022-02-26 23:34:57 +00:00
"bytes",
"bytestring",
2020-07-08 19:26:46 +00:00
"derive_more",
"encoding_rs",
"flate2",
2020-07-08 19:26:46 +00:00
"futures-core",
"http",
"httparse",
2022-02-26 23:34:57 +00:00
"httpdate",
"itoa",
2020-07-08 19:26:46 +00:00
"language-tags",
2022-02-26 23:34:57 +00:00
"local-channel",
2020-07-08 19:26:46 +00:00
"mime",
"percent-encoding",
2022-02-26 23:34:57 +00:00
"pin-project-lite",
"rand",
2022-07-02 20:28:48 +00:00
"sha1",
2022-02-26 23:34:57 +00:00
"smallvec",
2023-01-27 19:56:44 +00:00
"tokio",
"tokio-util",
2022-07-02 20:28:48 +00:00
"tracing",
2022-02-26 23:34:57 +00:00
"zstd",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "actix-macros"
2023-07-25 17:59:28 +00:00
version = "0.2.4"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-25 17:59:28 +00:00
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
2020-07-08 19:26:46 +00:00
dependencies = [
"quote",
2024-10-23 11:41:11 +00:00
"syn",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "actix-multipart"
2024-10-23 11:41:11 +00:00
version = "0.7.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "d5118a26dee7e34e894f7e85aa0ee5080ae4c18bf03c0e30d49a80e418f00a53"
2020-07-08 19:26:46 +00:00
dependencies = [
"actix-multipart-derive",
2020-07-08 19:26:46 +00:00
"actix-utils",
"actix-web",
"derive_more",
2022-02-26 23:34:57 +00:00
"futures-core",
"futures-util",
2020-07-08 19:26:46 +00:00
"httparse",
2022-02-26 23:34:57 +00:00
"local-waker",
2020-07-08 19:26:46 +00:00
"log",
2023-01-27 19:56:44 +00:00
"memchr",
2020-07-08 19:26:46 +00:00
"mime",
2024-06-09 20:35:14 +00:00
"rand",
"serde",
"serde_json",
"serde_plain",
"tempfile",
"tokio",
]
[[package]]
name = "actix-multipart-derive"
2024-10-23 11:41:11 +00:00
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "e11eb847f49a700678ea2fa73daeb3208061afa2b9d1a8527c03390f4c4a1c6b"
dependencies = [
"darling",
"parse-size",
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "actix-router"
2024-06-09 20:35:14 +00:00
version = "0.5.3"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
2020-07-08 19:26:46 +00:00
dependencies = [
"bytestring",
2024-06-09 20:35:14 +00:00
"cfg-if",
2020-07-08 19:26:46 +00:00
"http",
2024-06-09 20:35:14 +00:00
"regex-lite",
2020-07-08 19:26:46 +00:00
"serde",
2022-08-21 16:44:12 +00:00
"tracing",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "actix-rt"
2024-06-09 20:35:14 +00:00
version = "2.10.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"futures-core",
2020-07-08 19:26:46 +00:00
"tokio",
]
[[package]]
name = "actix-server"
2024-10-23 11:41:11 +00:00
version = "2.5.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894"
2020-07-08 19:26:46 +00:00
dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
2022-02-26 23:34:57 +00:00
"futures-core",
2020-07-08 19:26:46 +00:00
"futures-util",
2024-10-23 11:41:11 +00:00
"mio",
2022-02-26 23:34:57 +00:00
"socket2",
"tokio",
2022-04-23 22:37:20 +00:00
"tracing",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "actix-service"
2022-02-26 23:34:57 +00:00
version = "2.0.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 23:34:57 +00:00
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"futures-core",
"paste",
"pin-project-lite",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "actix-utils"
2022-11-23 23:10:11 +00:00
version = "3.0.1"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-23 23:10:11 +00:00
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"local-waker",
"pin-project-lite",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "actix-web"
2024-10-23 11:41:11 +00:00
version = "4.9.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38"
2020-07-08 19:26:46 +00:00
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
"actix-web-codegen",
"ahash",
2022-02-26 23:34:57 +00:00
"bytes",
"bytestring",
"cfg-if",
2020-07-08 19:26:46 +00:00
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2024-10-23 11:41:11 +00:00
"impl-more",
2022-02-26 23:34:57 +00:00
"itoa",
"language-tags",
2020-07-08 19:26:46 +00:00
"log",
"mime",
2022-02-26 23:34:57 +00:00
"once_cell",
"pin-project-lite",
2024-06-09 20:35:14 +00:00
"regex-lite",
2020-07-08 19:26:46 +00:00
"serde",
"serde_json",
"serde_urlencoded",
2022-02-26 23:34:57 +00:00
"smallvec",
"socket2",
2022-07-02 20:28:48 +00:00
"time",
2020-07-08 19:26:46 +00:00
"url",
]
[[package]]
name = "actix-web-codegen"
2024-06-09 20:35:14 +00:00
version = "4.3.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"actix-router",
2020-07-08 19:26:46 +00:00
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
2020-07-08 19:26:46 +00:00
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "addr2line"
2024-10-23 11:41:11 +00:00
version = "0.24.2"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
2023-07-25 17:59:28 +00:00
dependencies = [
"gimli",
]
2020-07-08 19:26:46 +00:00
[[package]]
2024-10-23 11:41:11 +00:00
name = "adler2"
version = "2.0.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
[[package]]
name = "ahash"
2024-03-29 11:04:40 +00:00
version = "0.8.11"
2023-04-14 08:00:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
2023-04-14 08:00:44 +00:00
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
"zerocopy",
2023-04-14 08:00:44 +00:00
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "allocator-api2"
2024-12-13 15:36:14 +00:00
version = "0.2.21"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
2023-07-25 17:59:28 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "atoi"
2023-07-25 17:59:28 +00:00
version = "2.0.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-25 17:59:28 +00:00
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
2020-07-08 19:26:46 +00:00
dependencies = [
"num-traits",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "autocfg"
2024-10-23 11:41:11 +00:00
version = "1.4.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
2020-07-08 19:26:46 +00:00
[[package]]
2023-07-25 17:59:28 +00:00
name = "backtrace"
2024-10-23 11:41:11 +00:00
version = "0.3.74"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
2023-07-25 17:59:28 +00:00
dependencies = [
"addr2line",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
2024-10-23 11:41:11 +00:00
"windows-targets 0.52.6",
2023-07-25 17:59:28 +00:00
]
2020-07-08 19:26:46 +00:00
2024-06-09 20:35:14 +00:00
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2023-07-25 17:59:28 +00:00
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "bitflags"
version = "2.6.0"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2023-07-25 17:59:28 +00:00
dependencies = [
"serde",
]
2020-07-08 19:26:46 +00:00
[[package]]
2022-02-26 23:34:57 +00:00
name = "block-buffer"
2023-04-14 08:00:44 +00:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 08:00:44 +00:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
2022-02-26 23:34:57 +00:00
"generic-array",
]
[[package]]
name = "bumpalo"
2024-06-09 20:35:14 +00:00
version = "3.16.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2021-09-09 20:18:42 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "byteorder"
version = "1.5.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2020-07-08 19:26:46 +00:00
[[package]]
name = "bytes"
2024-12-13 15:36:14 +00:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
2020-07-08 19:26:46 +00:00
[[package]]
name = "bytestring"
2024-12-13 15:36:14 +00:00
version = "1.4.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"bytes",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "cc"
2024-12-13 15:36:14 +00:00
version = "1.2.4"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "9157bbaa6b165880c27a4293a474c91cdcf265cc68cc829bf10be0964a391caf"
2022-02-26 23:34:57 +00:00
dependencies = [
"jobserver",
"libc",
2024-10-23 11:41:11 +00:00
"shlex",
2022-02-26 23:34:57 +00:00
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2024-10-23 11:41:11 +00:00
[[package]]
name = "concurrent-queue"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
dependencies = [
"crossbeam-utils",
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "const-oid"
2024-03-29 11:04:40 +00:00
version = "0.9.6"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
2023-07-25 17:59:28 +00:00
2021-08-18 21:22:50 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-07-08 19:26:46 +00:00
[[package]]
2021-08-18 21:22:50 +00:00
name = "cpufeatures"
2024-12-13 15:36:14 +00:00
version = "0.2.16"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
2021-08-18 21:22:50 +00:00
dependencies = [
"libc",
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "crc"
2024-06-09 20:35:14 +00:00
version = "3.2.1"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
2023-07-25 17:59:28 +00:00
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
version = "2.4.0"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
2023-07-25 17:59:28 +00:00
[[package]]
name = "crc32fast"
2024-06-09 20:35:14 +00:00
version = "1.4.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
dependencies = [
2022-02-26 23:34:57 +00:00
"cfg-if",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "crossbeam-queue"
2024-03-29 11:04:40 +00:00
version = "0.3.11"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
2020-07-08 19:26:46 +00:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2024-06-09 20:35:14 +00:00
version = "0.8.20"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
2020-07-08 19:26:46 +00:00
[[package]]
2022-02-26 23:34:57 +00:00
name = "crypto-common"
2022-08-21 16:44:12 +00:00
version = "0.1.6"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 16:44:12 +00:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2020-07-08 19:26:46 +00:00
dependencies = [
"generic-array",
2022-02-26 23:34:57 +00:00
"typenum",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "darling"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
2024-10-23 11:41:11 +00:00
"syn",
]
[[package]]
name = "darling_macro"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
dependencies = [
"darling_core",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
]
2022-08-21 16:44:12 +00:00
[[package]]
name = "dashmap"
2024-12-13 15:36:14 +00:00
version = "6.1.0"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
2022-08-21 16:44:12 +00:00
dependencies = [
"cfg-if",
2024-12-13 15:36:14 +00:00
"crossbeam-utils",
2024-10-23 11:41:11 +00:00
"hashbrown 0.14.5",
2022-08-21 16:44:12 +00:00
"lock_api",
"once_cell",
2023-07-25 17:59:28 +00:00
"parking_lot_core",
2022-08-21 16:44:12 +00:00
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "datatrash"
2024-12-13 15:36:14 +00:00
version = "2.5.2"
2020-07-08 19:26:46 +00:00
dependencies = [
"actix-files",
2022-08-21 16:44:12 +00:00
"actix-governor",
2020-07-08 19:26:46 +00:00
"actix-multipart",
"actix-web",
"env_logger",
2022-02-26 23:34:57 +00:00
"futures-util",
"htmlescape",
"lazy_static",
2020-07-08 19:26:46 +00:00
"log",
2021-03-09 22:36:24 +00:00
"mime",
2022-02-26 23:34:57 +00:00
"rand",
2020-07-08 19:26:46 +00:00
"sqlx",
2022-07-02 20:28:48 +00:00
"time",
2022-02-26 23:34:57 +00:00
"tokio",
"tree_magic_db",
2021-03-09 22:36:24 +00:00
"tree_magic_mini",
2021-09-09 20:18:42 +00:00
"url",
"urlencoding",
2020-07-08 19:26:46 +00:00
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "der"
2024-06-09 20:35:14 +00:00
version = "0.7.9"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
2023-07-25 17:59:28 +00:00
dependencies = [
"const-oid",
"pem-rfc7468",
"zeroize",
]
[[package]]
name = "deranged"
2024-03-29 11:04:40 +00:00
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
dependencies = [
"powerfmt",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "derive_more"
version = "0.99.18"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
2020-07-08 19:26:46 +00:00
dependencies = [
2021-08-18 21:22:50 +00:00
"convert_case",
2020-07-08 19:26:46 +00:00
"proc-macro2",
"quote",
2022-07-02 20:28:48 +00:00
"rustc_version",
2024-10-23 11:41:11 +00:00
"syn",
2020-07-08 19:26:46 +00:00
]
2022-02-26 23:34:57 +00:00
[[package]]
name = "digest"
2023-05-24 08:53:56 +00:00
version = "0.10.7"
2022-02-26 23:34:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 08:53:56 +00:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2022-02-26 23:34:57 +00:00
dependencies = [
2022-04-23 22:37:20 +00:00
"block-buffer",
2023-07-25 17:59:28 +00:00
"const-oid",
2022-02-26 23:34:57 +00:00
"crypto-common",
2022-04-23 22:37:20 +00:00
"subtle",
2022-02-26 23:34:57 +00:00
]
2024-12-13 15:36:14 +00:00
[[package]]
name = "displaydoc"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-07-08 19:26:46 +00:00
[[package]]
2022-08-21 16:44:12 +00:00
name = "dotenvy"
2023-04-14 08:00:44 +00:00
version = "0.15.7"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 08:00:44 +00:00
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
2020-07-08 19:26:46 +00:00
[[package]]
name = "either"
version = "1.13.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
2023-07-25 17:59:28 +00:00
dependencies = [
"serde",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "encoding_rs"
2024-12-13 15:36:14 +00:00
version = "0.8.35"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"cfg-if",
2020-07-08 19:26:46 +00:00
]
2024-03-29 11:04:40 +00:00
[[package]]
name = "env_filter"
version = "0.1.2"
2024-03-29 11:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab"
2024-03-29 11:04:40 +00:00
dependencies = [
"log",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "env_logger"
version = "0.11.5"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d"
2020-07-08 19:26:46 +00:00
dependencies = [
2024-03-29 11:04:40 +00:00
"env_filter",
2020-07-08 19:26:46 +00:00
"humantime",
"log",
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "errno"
2024-12-13 15:36:14 +00:00
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
dependencies = [
"libc",
2024-12-13 15:36:14 +00:00
"windows-sys 0.59.0",
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "etcetera"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
dependencies = [
"cfg-if",
"home",
2023-11-30 13:29:10 +00:00
"windows-sys 0.48.0",
2023-07-25 17:59:28 +00:00
]
2022-04-23 22:37:20 +00:00
[[package]]
name = "event-listener"
2024-10-23 11:41:11 +00:00
version = "5.3.1"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "fastrand"
2024-12-13 15:36:14 +00:00
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
2021-03-09 22:36:24 +00:00
[[package]]
name = "fixedbitset"
2022-11-23 23:10:11 +00:00
version = "0.4.2"
2021-03-09 22:36:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-23 23:10:11 +00:00
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
2021-03-09 22:36:24 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "flate2"
2024-12-13 15:36:14 +00:00
version = "1.0.35"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
2020-07-08 19:26:46 +00:00
dependencies = [
"crc32fast",
"miniz_oxide",
2020-07-08 19:26:46 +00:00
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "flume"
2024-10-23 11:41:11 +00:00
version = "0.11.1"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
2023-07-25 17:59:28 +00:00
dependencies = [
"futures-core",
"futures-sink",
"spin",
2023-07-25 17:59:28 +00:00
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
version = "1.2.1"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2020-07-08 19:26:46 +00:00
dependencies = [
"percent-encoding",
2020-07-08 19:26:46 +00:00
]
2022-08-21 16:44:12 +00:00
[[package]]
name = "futures"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
2022-08-21 16:44:12 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "futures-channel"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
2020-07-08 19:26:46 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
2022-08-21 16:44:12 +00:00
[[package]]
name = "futures-executor"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
2022-08-21 16:44:12 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2020-07-08 19:26:46 +00:00
2021-08-18 21:22:50 +00:00
[[package]]
name = "futures-intrusive"
2023-07-25 17:59:28 +00:00
version = "0.5.0"
2021-08-18 21:22:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-25 17:59:28 +00:00
checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
2021-08-18 21:22:50 +00:00
dependencies = [
"futures-core",
"lock_api",
2023-07-25 17:59:28 +00:00
"parking_lot",
2020-09-06 14:19:51 +00:00
]
2022-08-21 16:44:12 +00:00
[[package]]
name = "futures-io"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
2022-08-21 16:44:12 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "futures-macro"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
2020-07-08 19:26:46 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "futures-sink"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
2020-07-08 19:26:46 +00:00
[[package]]
name = "futures-task"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
2022-08-21 16:44:12 +00:00
[[package]]
name = "futures-timer"
2024-03-29 11:04:40 +00:00
version = "3.0.3"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
2020-07-08 19:26:46 +00:00
[[package]]
name = "futures-util"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-08-21 16:44:12 +00:00
"futures-channel",
2020-07-08 19:26:46 +00:00
"futures-core",
2022-08-21 16:44:12 +00:00
"futures-io",
2020-07-08 19:26:46 +00:00
"futures-macro",
"futures-sink",
"futures-task",
2022-08-21 16:44:12 +00:00
"memchr",
2022-02-26 23:34:57 +00:00
"pin-project-lite",
2020-07-08 19:26:46 +00:00
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
2023-04-14 08:00:44 +00:00
version = "0.14.7"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 08:00:44 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2020-07-08 19:26:46 +00:00
dependencies = [
"typenum",
2022-02-26 23:34:57 +00:00
"version_check",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "getrandom"
2024-06-09 20:35:14 +00:00
version = "0.2.15"
2022-02-26 23:34:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2022-02-26 23:34:57 +00:00
dependencies = [
"cfg-if",
"libc",
2024-03-29 11:04:40 +00:00
"wasi",
2022-08-21 16:44:12 +00:00
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "gimli"
2024-10-23 11:41:11 +00:00
version = "0.31.1"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
2023-07-25 17:59:28 +00:00
2022-08-21 16:44:12 +00:00
[[package]]
name = "governor"
2024-12-13 15:36:14 +00:00
version = "0.8.0"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "842dc78579ce01e6a1576ad896edc92fca002dd60c9c3746b7fc2bec6fb429d0"
2022-08-21 16:44:12 +00:00
dependencies = [
2023-01-27 19:56:44 +00:00
"cfg-if",
2022-08-21 16:44:12 +00:00
"dashmap",
2024-12-13 15:36:14 +00:00
"futures-sink",
2022-08-21 16:44:12 +00:00
"futures-timer",
2024-12-13 15:36:14 +00:00
"futures-util",
2022-08-21 16:44:12 +00:00
"no-std-compat",
"nonzero_ext",
2023-07-25 17:59:28 +00:00
"parking_lot",
2024-03-29 11:04:40 +00:00
"portable-atomic",
2022-08-21 16:44:12 +00:00
"quanta",
"rand",
"smallvec",
2024-03-29 11:04:40 +00:00
"spinning_top",
2020-07-08 19:26:46 +00:00
]
2020-09-06 14:19:51 +00:00
[[package]]
name = "hashbrown"
2024-06-09 20:35:14 +00:00
version = "0.14.5"
2023-05-24 08:53:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
dependencies = [
"ahash",
2023-07-25 17:59:28 +00:00
"allocator-api2",
]
2024-10-23 11:41:11 +00:00
[[package]]
name = "hashbrown"
2024-12-13 15:36:14 +00:00
version = "0.15.2"
2024-10-23 11:41:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
2024-10-23 11:41:11 +00:00
[[package]]
name = "hashlink"
2024-10-23 11:41:11 +00:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
dependencies = [
2024-10-23 11:41:11 +00:00
"hashbrown 0.14.5",
]
2020-09-06 14:19:51 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "heck"
2024-10-23 11:41:11 +00:00
version = "0.5.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2020-07-08 19:26:46 +00:00
[[package]]
name = "hex"
version = "0.4.3"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2020-07-08 19:26:46 +00:00
2022-04-23 22:37:20 +00:00
[[package]]
name = "hkdf"
2024-03-29 11:04:40 +00:00
version = "0.12.4"
2022-04-23 22:37:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
2022-04-23 22:37:20 +00:00
dependencies = [
"hmac",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "hmac"
2022-04-23 22:37:20 +00:00
version = "0.12.1"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-23 22:37:20 +00:00
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-04-23 22:37:20 +00:00
"digest",
2020-07-08 19:26:46 +00:00
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "home"
2024-03-29 11:04:40 +00:00
version = "0.5.9"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
2023-07-25 17:59:28 +00:00
dependencies = [
2024-03-29 11:04:40 +00:00
"windows-sys 0.52.0",
2023-07-25 17:59:28 +00:00
]
[[package]]
name = "htmlescape"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
2020-07-08 19:26:46 +00:00
[[package]]
name = "http"
2024-03-29 11:04:40 +00:00
version = "0.2.12"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"bytes",
2020-07-08 19:26:46 +00:00
"fnv",
"itoa",
]
2022-02-26 23:34:57 +00:00
[[package]]
name = "http-range"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
2020-07-08 19:26:46 +00:00
[[package]]
name = "httparse"
2024-10-23 11:41:11 +00:00
version = "1.9.5"
2022-02-26 23:34:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
2022-02-26 23:34:57 +00:00
[[package]]
name = "httpdate"
version = "1.0.3"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2020-07-08 19:26:46 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2020-07-08 19:26:46 +00:00
2024-12-13 15:36:14 +00:00
[[package]]
name = "icu_collections"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
dependencies = [
"displaydoc",
"yoke",
"zerofrom",
"zerovec",
]
[[package]]
name = "icu_locid"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
dependencies = [
"displaydoc",
"litemap",
"tinystr",
"writeable",
"zerovec",
]
[[package]]
name = "icu_locid_transform"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
dependencies = [
"displaydoc",
"icu_locid",
"icu_locid_transform_data",
"icu_provider",
"tinystr",
"zerovec",
]
[[package]]
name = "icu_locid_transform_data"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
[[package]]
name = "icu_normalizer"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
dependencies = [
"displaydoc",
"icu_collections",
"icu_normalizer_data",
"icu_properties",
"icu_provider",
"smallvec",
"utf16_iter",
"utf8_iter",
"write16",
"zerovec",
]
[[package]]
name = "icu_normalizer_data"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
[[package]]
name = "icu_properties"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
dependencies = [
"displaydoc",
"icu_collections",
"icu_locid_transform",
"icu_properties_data",
"icu_provider",
"tinystr",
"zerovec",
]
[[package]]
name = "icu_properties_data"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
[[package]]
name = "icu_provider"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
dependencies = [
"displaydoc",
"icu_locid",
"icu_provider_macros",
"stable_deref_trait",
"tinystr",
"writeable",
"yoke",
"zerofrom",
"zerovec",
]
[[package]]
name = "icu_provider_macros"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2020-07-08 19:26:46 +00:00
[[package]]
name = "idna"
2024-12-13 15:36:14 +00:00
version = "1.0.3"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
2020-07-08 19:26:46 +00:00
dependencies = [
2024-12-13 15:36:14 +00:00
"idna_adapter",
"smallvec",
"utf8_iter",
]
[[package]]
name = "idna_adapter"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
dependencies = [
"icu_normalizer",
"icu_properties",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "impl-more"
2024-10-23 11:41:11 +00:00
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0"
2020-07-08 19:26:46 +00:00
[[package]]
name = "indexmap"
2024-12-13 15:36:14 +00:00
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
dependencies = [
2023-07-25 17:59:28 +00:00
"equivalent",
2024-12-13 15:36:14 +00:00
"hashbrown 0.15.2",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "itoa"
2024-12-13 15:36:14 +00:00
version = "1.0.14"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
2020-07-08 19:26:46 +00:00
[[package]]
2022-02-26 23:34:57 +00:00
name = "jobserver"
version = "0.1.32"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"libc",
2020-07-08 19:26:46 +00:00
]
[[package]]
2022-02-26 23:34:57 +00:00
name = "js-sys"
2024-12-13 15:36:14 +00:00
version = "0.3.76"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
2020-07-08 19:26:46 +00:00
dependencies = [
2024-12-13 15:36:14 +00:00
"once_cell",
2022-02-26 23:34:57 +00:00
"wasm-bindgen",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "language-tags"
2022-02-26 23:34:57 +00:00
version = "0.3.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 23:34:57 +00:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2020-07-08 19:26:46 +00:00
[[package]]
name = "lazy_static"
version = "1.5.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2023-07-25 17:59:28 +00:00
dependencies = [
"spin",
2023-07-25 17:59:28 +00:00
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "libc"
2024-12-13 15:36:14 +00:00
version = "0.2.168"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
2023-07-25 17:59:28 +00:00
[[package]]
name = "libm"
2024-12-13 15:36:14 +00:00
version = "0.2.11"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
2023-07-25 17:59:28 +00:00
[[package]]
name = "libsqlite3-sys"
2024-10-23 11:41:11 +00:00
version = "0.30.1"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
2023-07-25 17:59:28 +00:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "linux-raw-sys"
2024-06-09 20:35:14 +00:00
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
2024-12-13 15:36:14 +00:00
[[package]]
name = "litemap"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
2020-07-08 19:26:46 +00:00
[[package]]
2022-02-26 23:34:57 +00:00
name = "local-channel"
version = "0.1.5"
2022-02-26 23:34:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
2022-02-26 23:34:57 +00:00
dependencies = [
"futures-core",
"futures-sink",
"local-waker",
]
[[package]]
name = "local-waker"
version = "0.1.4"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2020-07-08 19:26:46 +00:00
[[package]]
name = "lock_api"
2024-06-09 20:35:14 +00:00
version = "0.4.12"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-04-23 22:37:20 +00:00
"autocfg",
2020-07-08 19:26:46 +00:00
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.22"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2020-07-08 19:26:46 +00:00
[[package]]
name = "md-5"
version = "0.10.6"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
2020-07-08 19:26:46 +00:00
dependencies = [
"cfg-if",
2022-04-23 22:37:20 +00:00
"digest",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "memchr"
version = "2.7.4"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2020-07-08 19:26:46 +00:00
[[package]]
name = "mime"
2023-04-14 08:00:44 +00:00
version = "0.3.17"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 08:00:44 +00:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2020-07-08 19:26:46 +00:00
[[package]]
name = "mime_guess"
version = "2.0.5"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2020-07-08 19:26:46 +00:00
dependencies = [
"mime",
"unicase",
]
2021-09-09 20:18:42 +00:00
[[package]]
name = "minimal-lexical"
2022-02-26 23:34:57 +00:00
version = "0.2.1"
2021-09-09 20:18:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 23:34:57 +00:00
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-09-09 20:18:42 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "miniz_oxide"
2024-10-23 11:41:11 +00:00
version = "0.8.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
2020-07-08 19:26:46 +00:00
dependencies = [
2024-10-23 11:41:11 +00:00
"adler2",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "mio"
2024-12-13 15:36:14 +00:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
dependencies = [
"libc",
2024-10-23 11:41:11 +00:00
"log",
"wasi",
"windows-sys 0.52.0",
]
2022-08-21 16:44:12 +00:00
[[package]]
name = "no-std-compat"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
2020-07-08 19:26:46 +00:00
[[package]]
name = "nom"
2023-01-27 19:56:44 +00:00
version = "7.1.3"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 19:56:44 +00:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2020-07-08 19:26:46 +00:00
dependencies = [
"memchr",
2022-02-26 23:34:57 +00:00
"minimal-lexical",
2020-07-08 19:26:46 +00:00
]
2022-08-21 16:44:12 +00:00
[[package]]
name = "nonzero_ext"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
2020-07-08 19:26:46 +00:00
[[package]]
2023-07-25 17:59:28 +00:00
name = "num-bigint-dig"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
dependencies = [
"byteorder",
"lazy_static",
"libm",
"num-integer",
"num-iter",
"num-traits",
"rand",
"smallvec",
"zeroize",
]
2024-03-29 11:04:40 +00:00
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2023-07-25 17:59:28 +00:00
[[package]]
name = "num-integer"
2024-03-29 11:04:40 +00:00
version = "0.1.46"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2020-07-08 19:26:46 +00:00
dependencies = [
2023-07-25 17:59:28 +00:00
"num-traits",
2020-07-08 19:26:46 +00:00
]
[[package]]
2023-07-25 17:59:28 +00:00
name = "num-iter"
2024-06-09 20:35:14 +00:00
version = "0.1.45"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2020-07-08 19:26:46 +00:00
dependencies = [
2023-07-25 17:59:28 +00:00
"autocfg",
"num-integer",
"num-traits",
2020-07-08 19:26:46 +00:00
]
[[package]]
2023-07-25 17:59:28 +00:00
name = "num-traits"
2024-06-09 20:35:14 +00:00
version = "0.2.19"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2023-07-25 17:59:28 +00:00
dependencies = [
"autocfg",
"libm",
]
2020-07-08 19:26:46 +00:00
2022-02-26 23:34:57 +00:00
[[package]]
2023-07-25 17:59:28 +00:00
name = "object"
2024-10-23 11:41:11 +00:00
version = "0.36.5"
2022-02-26 23:34:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
2022-02-26 23:34:57 +00:00
dependencies = [
2023-07-25 17:59:28 +00:00
"memchr",
2020-07-08 19:26:46 +00:00
]
[[package]]
2023-07-25 17:59:28 +00:00
name = "once_cell"
2024-10-23 11:41:11 +00:00
version = "1.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
[[package]]
name = "parking"
version = "2.2.1"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2023-07-25 17:59:28 +00:00
[[package]]
name = "parking_lot"
2024-06-09 20:35:14 +00:00
version = "0.12.3"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2020-07-08 19:26:46 +00:00
dependencies = [
2023-07-25 17:59:28 +00:00
"lock_api",
"parking_lot_core",
2021-03-09 22:36:24 +00:00
]
2020-07-08 19:26:46 +00:00
[[package]]
2022-02-26 23:34:57 +00:00
name = "parking_lot_core"
2024-06-09 20:35:14 +00:00
version = "0.9.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
dependencies = [
2022-02-26 23:34:57 +00:00
"cfg-if",
"libc",
2024-10-23 11:41:11 +00:00
"redox_syscall",
2022-02-26 23:34:57 +00:00
"smallvec",
"windows-targets 0.52.6",
]
[[package]]
name = "parse-size"
2024-10-23 11:41:11 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "487f2ccd1e17ce8c1bfab3a65c89525af41cfad4c8659021a1e9a2aacd73b89b"
[[package]]
2022-02-26 23:34:57 +00:00
name = "paste"
2024-06-09 20:35:14 +00:00
version = "1.0.15"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2023-07-25 17:59:28 +00:00
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
dependencies = [
"base64ct",
]
2020-07-08 19:26:46 +00:00
[[package]]
2022-02-26 23:34:57 +00:00
name = "percent-encoding"
version = "2.3.1"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
[[package]]
2022-02-26 23:34:57 +00:00
name = "petgraph"
2024-06-09 20:35:14 +00:00
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"fixedbitset",
"indexmap",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "pin-project-lite"
2024-12-13 15:36:14 +00:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
2020-07-08 19:26:46 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2023-07-25 17:59:28 +00:00
[[package]]
name = "pkcs1"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
dependencies = [
"der",
"pkcs8",
"spki",
]
[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
"der",
"spki",
]
2023-01-27 19:56:44 +00:00
[[package]]
name = "pkg-config"
2024-10-23 11:41:11 +00:00
version = "0.3.31"
2023-01-27 19:56:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
2024-03-29 11:04:40 +00:00
[[package]]
name = "portable-atomic"
2024-12-13 15:36:14 +00:00
version = "1.10.0"
2024-03-29 11:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
2023-01-27 19:56:44 +00:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2020-07-08 19:26:46 +00:00
[[package]]
name = "ppv-lite86"
2024-10-23 11:41:11 +00:00
version = "0.2.20"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
"zerocopy",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "proc-macro2"
2024-12-13 15:36:14 +00:00
version = "1.0.92"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-07-02 20:28:48 +00:00
"unicode-ident",
2020-07-08 19:26:46 +00:00
]
2022-08-21 16:44:12 +00:00
[[package]]
name = "quanta"
2024-12-13 15:36:14 +00:00
version = "0.12.4"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "773ce68d0bb9bc7ef20be3536ffe94e223e1f365bd374108b2659fac0c65cfe6"
2022-08-21 16:44:12 +00:00
dependencies = [
"crossbeam-utils",
"libc",
"once_cell",
"raw-cpuid",
2024-03-29 11:04:40 +00:00
"wasi",
2022-08-21 16:44:12 +00:00
"web-sys",
"winapi",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "quote"
2024-10-23 11:41:11 +00:00
version = "1.0.37"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2020-07-08 19:26:46 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2022-02-26 23:34:57 +00:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 23:34:57 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
2020-07-08 19:26:46 +00:00
"libc",
2022-02-26 23:34:57 +00:00
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
2021-08-18 21:22:50 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-18 21:22:50 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2022-02-26 23:34:57 +00:00
"rand_core",
]
[[package]]
name = "rand_core"
2022-08-21 16:44:12 +00:00
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 16:44:12 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2022-02-26 23:34:57 +00:00
"getrandom",
2020-07-08 19:26:46 +00:00
]
2022-08-21 16:44:12 +00:00
[[package]]
name = "raw-cpuid"
2024-10-23 11:41:11 +00:00
version = "11.2.0"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
2022-08-21 16:44:12 +00:00
dependencies = [
2024-10-23 11:41:11 +00:00
"bitflags",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "redox_syscall"
2024-12-13 15:36:14 +00:00
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
dependencies = [
2024-10-23 11:41:11 +00:00
"bitflags",
2020-07-08 19:26:46 +00:00
]
[[package]]
2024-06-09 20:35:14 +00:00
name = "regex-lite"
version = "0.1.6"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
2020-07-08 19:26:46 +00:00
[[package]]
name = "ring"
2024-03-29 11:04:40 +00:00
version = "0.17.8"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2020-07-08 19:26:46 +00:00
dependencies = [
"cc",
2024-03-29 11:04:40 +00:00
"cfg-if",
"getrandom",
"libc",
"spin",
"untrusted",
2024-03-29 11:04:40 +00:00
"windows-sys 0.52.0",
2021-08-18 21:22:50 +00:00
]
2020-07-08 19:26:46 +00:00
2023-07-25 17:59:28 +00:00
[[package]]
name = "rsa"
2024-12-13 15:36:14 +00:00
version = "0.9.7"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
2023-07-25 17:59:28 +00:00
dependencies = [
"const-oid",
"digest",
"num-bigint-dig",
"num-integer",
"num-traits",
"pkcs1",
"pkcs8",
"rand_core",
"signature",
"spki",
"subtle",
"zeroize",
]
[[package]]
name = "rustc-demangle"
2024-06-09 20:35:14 +00:00
version = "0.1.24"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2023-07-25 17:59:28 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "rustc_version"
2024-10-23 11:41:11 +00:00
version = "0.4.1"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
dependencies = [
2022-07-02 20:28:48 +00:00
"semver",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "rustix"
2024-12-13 15:36:14 +00:00
version = "0.38.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
dependencies = [
2024-10-23 11:41:11 +00:00
"bitflags",
"errno",
"libc",
"linux-raw-sys",
2024-12-13 15:36:14 +00:00
"windows-sys 0.59.0",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "rustls"
2024-12-13 15:36:14 +00:00
version = "0.23.20"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b"
2020-07-08 19:26:46 +00:00
dependencies = [
2024-10-23 11:41:11 +00:00
"once_cell",
"ring",
2024-10-23 11:41:11 +00:00
"rustls-pki-types",
2023-07-25 17:59:28 +00:00
"rustls-webpki",
2024-10-23 11:41:11 +00:00
"subtle",
"zeroize",
2020-07-08 19:26:46 +00:00
]
2022-07-02 20:28:48 +00:00
[[package]]
name = "rustls-pemfile"
2024-10-23 11:41:11 +00:00
version = "2.2.0"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2023-07-25 17:59:28 +00:00
dependencies = [
2024-10-23 11:41:11 +00:00
"rustls-pki-types",
2023-07-25 17:59:28 +00:00
]
2024-10-23 11:41:11 +00:00
[[package]]
name = "rustls-pki-types"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
2023-07-25 17:59:28 +00:00
[[package]]
name = "rustls-webpki"
2024-10-23 11:41:11 +00:00
version = "0.102.8"
2022-07-02 20:28:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2022-07-02 20:28:48 +00:00
dependencies = [
2023-07-25 17:59:28 +00:00
"ring",
2024-10-23 11:41:11 +00:00
"rustls-pki-types",
2023-07-25 17:59:28 +00:00
"untrusted",
2022-07-02 20:28:48 +00:00
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "ryu"
2024-06-09 20:35:14 +00:00
version = "1.0.18"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2020-07-08 19:26:46 +00:00
[[package]]
name = "scopeguard"
2023-07-25 17:59:28 +00:00
version = "1.2.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-25 17:59:28 +00:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2020-07-08 19:26:46 +00:00
2022-02-27 00:50:29 +00:00
[[package]]
name = "semver"
2024-12-13 15:36:14 +00:00
version = "1.0.24"
2021-08-18 21:22:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
2022-02-27 00:50:29 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "serde"
2024-12-13 15:36:14 +00:00
version = "1.0.216"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
2020-07-08 19:26:46 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-12-13 15:36:14 +00:00
version = "1.0.216"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
2020-07-08 19:26:46 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "serde_json"
2024-12-13 15:36:14 +00:00
version = "1.0.133"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
2020-07-08 19:26:46 +00:00
dependencies = [
"itoa",
2024-10-23 11:41:11 +00:00
"memchr",
2020-07-08 19:26:46 +00:00
"ryu",
"serde",
]
[[package]]
name = "serde_plain"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
dependencies = [
"serde",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "serde_urlencoded"
2022-02-26 23:34:57 +00:00
version = "0.7.1"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 23:34:57 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2020-07-08 19:26:46 +00:00
dependencies = [
"form_urlencoded",
2020-07-08 19:26:46 +00:00
"itoa",
"ryu",
2020-07-08 19:26:46 +00:00
"serde",
]
2022-02-27 00:50:29 +00:00
[[package]]
name = "sha1"
version = "0.10.6"
2022-02-27 00:50:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2022-02-27 00:50:29 +00:00
dependencies = [
2022-07-02 20:28:48 +00:00
"cfg-if",
"cpufeatures",
"digest",
2022-02-27 00:50:29 +00:00
]
[[package]]
2022-02-26 23:34:57 +00:00
name = "sha2"
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
2022-02-26 23:34:57 +00:00
"cfg-if",
"cpufeatures",
2022-04-23 22:37:20 +00:00
"digest",
]
2024-10-23 11:41:11 +00:00
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2020-07-08 19:26:46 +00:00
[[package]]
name = "signal-hook-registry"
2024-06-09 20:35:14 +00:00
version = "1.4.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2020-07-08 19:26:46 +00:00
dependencies = [
"libc",
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "signature"
version = "2.2.0"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2023-07-25 17:59:28 +00:00
dependencies = [
"digest",
"rand_core",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "slab"
version = "0.4.9"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2022-08-21 16:44:12 +00:00
dependencies = [
"autocfg",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "smallvec"
2024-03-29 11:04:40 +00:00
version = "1.13.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2024-10-23 11:41:11 +00:00
dependencies = [
"serde",
]
2020-07-08 19:26:46 +00:00
2021-08-18 21:22:50 +00:00
[[package]]
name = "socket2"
2024-12-13 15:36:14 +00:00
version = "0.5.8"
2021-08-18 21:22:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2021-08-18 21:22:50 +00:00
dependencies = [
"libc",
2024-03-29 11:04:40 +00:00
"windows-sys 0.52.0",
2021-08-18 21:22:50 +00:00
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
"lock_api",
]
2024-03-29 11:04:40 +00:00
[[package]]
name = "spinning_top"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300"
dependencies = [
"lock_api",
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "spki"
2023-11-30 13:29:10 +00:00
version = "0.7.3"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-30 13:29:10 +00:00
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2023-07-25 17:59:28 +00:00
dependencies = [
"base64ct",
"der",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "sqlformat"
2024-10-23 11:41:11 +00:00
version = "0.2.6"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"nom",
"unicode_categories",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "sqlx"
2024-10-23 11:41:11 +00:00
version = "0.8.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "93334716a037193fac19df402f8571269c84a00852f6a7066b5d2616dcd64d3e"
2020-07-08 19:26:46 +00:00
dependencies = [
"sqlx-core",
"sqlx-macros",
2023-07-25 17:59:28 +00:00
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "sqlx-core"
2024-10-23 11:41:11 +00:00
version = "0.8.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "d4d8060b456358185f7d50c55d9b5066ad956956fddec42ee2e8567134a8936e"
2020-07-08 19:26:46 +00:00
dependencies = [
"atoi",
2020-07-08 19:26:46 +00:00
"byteorder",
2022-02-26 23:34:57 +00:00
"bytes",
2023-07-25 17:59:28 +00:00
"crc",
2020-07-08 19:26:46 +00:00
"crossbeam-queue",
"either",
2022-04-23 22:37:20 +00:00
"event-listener",
2020-07-08 19:26:46 +00:00
"futures-channel",
"futures-core",
2021-08-18 21:22:50 +00:00
"futures-intrusive",
2023-07-25 17:59:28 +00:00
"futures-io",
2020-07-08 19:26:46 +00:00
"futures-util",
2024-10-23 11:41:11 +00:00
"hashbrown 0.14.5",
"hashlink",
2020-07-08 19:26:46 +00:00
"hex",
"indexmap",
2020-07-08 19:26:46 +00:00
"log",
"memchr",
"once_cell",
2022-02-26 23:34:57 +00:00
"paste",
2020-07-08 19:26:46 +00:00
"percent-encoding",
"rustls",
2022-07-02 20:28:48 +00:00
"rustls-pemfile",
"serde",
"serde_json",
2020-07-08 19:26:46 +00:00
"sha2",
"smallvec",
2020-07-08 19:26:46 +00:00
"sqlformat",
"thiserror",
2022-07-02 20:28:48 +00:00
"time",
2023-07-25 17:59:28 +00:00
"tokio",
2022-02-26 23:34:57 +00:00
"tokio-stream",
2023-07-25 17:59:28 +00:00
"tracing",
2020-07-08 19:26:46 +00:00
"url",
"webpki-roots",
2020-07-08 19:26:46 +00:00
]
[[package]]
name = "sqlx-macros"
2024-10-23 11:41:11 +00:00
version = "0.8.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "cac0692bcc9de3b073e8d747391827297e075c7710ff6276d9f7a1f3d58c6657"
2023-07-25 17:59:28 +00:00
dependencies = [
"proc-macro2",
"quote",
"sqlx-core",
"sqlx-macros-core",
2024-10-23 11:41:11 +00:00
"syn",
2023-07-25 17:59:28 +00:00
]
[[package]]
name = "sqlx-macros-core"
2024-10-23 11:41:11 +00:00
version = "0.8.2"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "1804e8a7c7865599c9c79be146dc8a9fd8cc86935fa641d3ea58e5f0688abaa5"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-08-21 16:44:12 +00:00
"dotenvy",
"either",
2020-07-08 19:26:46 +00:00
"heck",
2023-07-25 17:59:28 +00:00
"hex",
2021-08-18 21:22:50 +00:00
"once_cell",
2020-07-08 19:26:46 +00:00
"proc-macro2",
"quote",
2023-07-25 17:59:28 +00:00
"serde",
"serde_json",
"sha2",
2020-07-08 19:26:46 +00:00
"sqlx-core",
2023-07-25 17:59:28 +00:00
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
2024-10-23 11:41:11 +00:00
"syn",
2023-07-25 17:59:28 +00:00
"tempfile",
"tokio",
2020-07-08 19:26:46 +00:00
"url",
]
[[package]]
2023-07-25 17:59:28 +00:00
name = "sqlx-mysql"
2024-10-23 11:41:11 +00:00
version = "0.8.2"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "64bb4714269afa44aef2755150a0fc19d756fb580a67db8885608cf02f47d06a"
2020-07-08 19:26:46 +00:00
dependencies = [
2023-07-25 17:59:28 +00:00
"atoi",
2024-10-23 11:41:11 +00:00
"base64",
"bitflags",
2023-07-25 17:59:28 +00:00
"byteorder",
"bytes",
"crc",
"digest",
"dotenvy",
"either",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"generic-array",
"hex",
"hkdf",
"hmac",
"itoa",
"log",
"md-5",
"memchr",
2022-02-26 23:34:57 +00:00
"once_cell",
2023-07-25 17:59:28 +00:00
"percent-encoding",
"rand",
"rsa",
"serde",
"sha1",
"sha2",
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"time",
"tracing",
"whoami",
]
[[package]]
name = "sqlx-postgres"
2024-10-23 11:41:11 +00:00
version = "0.8.2"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "6fa91a732d854c5d7726349bb4bb879bb9478993ceb764247660aee25f67c2f8"
2023-07-25 17:59:28 +00:00
dependencies = [
"atoi",
2024-10-23 11:41:11 +00:00
"base64",
"bitflags",
2023-07-25 17:59:28 +00:00
"byteorder",
"crc",
"dotenvy",
"etcetera",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"hex",
"hkdf",
"hmac",
"home",
"itoa",
"log",
"md-5",
"memchr",
"once_cell",
"rand",
"serde",
"serde_json",
"sha2",
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"time",
"tracing",
"whoami",
]
[[package]]
name = "sqlx-sqlite"
2024-10-23 11:41:11 +00:00
version = "0.8.2"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "d5b2cf34a45953bfd3daaf3db0f7a7878ab9b7a6b91b422d24a7a9e4c857b680"
2023-07-25 17:59:28 +00:00
dependencies = [
"atoi",
"flume",
"futures-channel",
"futures-core",
"futures-executor",
"futures-intrusive",
"futures-util",
"libsqlite3-sys",
"log",
"percent-encoding",
"serde",
2024-10-23 11:41:11 +00:00
"serde_urlencoded",
2023-07-25 17:59:28 +00:00
"sqlx-core",
"time",
"tracing",
"url",
2020-07-08 19:26:46 +00:00
]
2024-12-13 15:36:14 +00:00
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
[[package]]
name = "stringprep"
2024-06-09 20:35:14 +00:00
version = "0.1.5"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2020-07-08 19:26:46 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
2024-06-09 20:35:14 +00:00
"unicode-properties",
]
[[package]]
name = "strsim"
2024-06-09 20:35:14 +00:00
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]]
name = "subtle"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
[[package]]
name = "syn"
2024-12-13 15:36:14 +00:00
version = "2.0.90"
2023-04-14 08:00:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
dependencies = [
"proc-macro2",
"quote",
2022-07-02 20:28:48 +00:00
"unicode-ident",
2020-07-08 19:26:46 +00:00
]
2024-12-13 15:36:14 +00:00
[[package]]
name = "synstructure"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tempfile"
2024-12-13 15:36:14 +00:00
version = "3.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
dependencies = [
"cfg-if",
"fastrand",
2024-10-23 11:41:11 +00:00
"once_cell",
"rustix",
2024-10-23 11:41:11 +00:00
"windows-sys 0.59.0",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "thiserror"
2024-12-13 15:36:14 +00:00
version = "1.0.69"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2020-07-08 19:26:46 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2024-12-13 15:36:14 +00:00
version = "1.0.69"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2020-07-08 19:26:46 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
2020-07-08 19:26:46 +00:00
]
[[package]]
2022-02-26 23:34:57 +00:00
name = "time"
2024-12-13 15:36:14 +00:00
version = "0.3.37"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
2020-07-08 19:26:46 +00:00
dependencies = [
"deranged",
2022-02-26 23:34:57 +00:00
"itoa",
2024-03-29 11:04:40 +00:00
"num-conv",
"powerfmt",
2022-11-23 23:10:11 +00:00
"serde",
"time-core",
2022-07-02 20:28:48 +00:00
"time-macros",
2020-07-08 19:26:46 +00:00
]
2022-11-23 23:10:11 +00:00
[[package]]
name = "time-core"
version = "0.1.2"
2022-11-23 23:10:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2022-11-23 23:10:11 +00:00
2022-02-27 00:50:29 +00:00
[[package]]
name = "time-macros"
2024-12-13 15:36:14 +00:00
version = "0.2.19"
2022-02-27 00:50:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
2022-11-23 23:10:11 +00:00
dependencies = [
2024-03-29 11:04:40 +00:00
"num-conv",
2022-11-23 23:10:11 +00:00
"time-core",
]
2022-02-27 00:50:29 +00:00
2024-12-13 15:36:14 +00:00
[[package]]
name = "tinystr"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
dependencies = [
"displaydoc",
"zerovec",
]
[[package]]
2022-02-26 23:34:57 +00:00
name = "tinyvec"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
dependencies = [
2022-02-26 23:34:57 +00:00
"tinyvec_macros",
]
[[package]]
2022-02-26 23:34:57 +00:00
name = "tinyvec_macros"
2023-02-08 18:24:46 +00:00
version = "0.1.1"
2022-02-26 23:34:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-08 18:24:46 +00:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2022-02-26 23:34:57 +00:00
[[package]]
name = "tokio"
2024-12-13 15:36:14 +00:00
version = "1.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
dependencies = [
2023-07-25 17:59:28 +00:00
"backtrace",
2022-02-26 23:34:57 +00:00
"bytes",
"libc",
2024-10-23 11:41:11 +00:00
"mio",
2023-07-25 17:59:28 +00:00
"parking_lot",
2022-02-26 23:34:57 +00:00
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
"windows-sys 0.52.0",
]
[[package]]
2022-02-26 23:34:57 +00:00
name = "tokio-macros"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
dependencies = [
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
]
[[package]]
2022-02-26 23:34:57 +00:00
name = "tokio-stream"
2024-12-13 15:36:14 +00:00
version = "0.1.17"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2022-02-26 23:34:57 +00:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2020-07-08 19:26:46 +00:00
[[package]]
2022-02-26 23:34:57 +00:00
name = "tokio-util"
2024-12-13 15:36:14 +00:00
version = "0.7.13"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"bytes",
2020-07-08 19:26:46 +00:00
"futures-core",
2022-02-26 23:34:57 +00:00
"futures-sink",
"pin-project-lite",
"tokio",
2020-07-08 19:26:46 +00:00
]
[[package]]
2022-04-23 22:37:20 +00:00
name = "tracing"
2024-12-13 15:36:14 +00:00
version = "0.1.41"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2020-07-08 19:26:46 +00:00
dependencies = [
"log",
2022-02-26 23:34:57 +00:00
"pin-project-lite",
2023-07-25 17:59:28 +00:00
"tracing-attributes",
2022-04-23 22:37:20 +00:00
"tracing-core",
2020-07-08 19:26:46 +00:00
]
2023-07-25 17:59:28 +00:00
[[package]]
name = "tracing-attributes"
2024-12-13 15:36:14 +00:00
version = "0.1.28"
2023-07-25 17:59:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
2023-07-25 17:59:28 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
2023-07-25 17:59:28 +00:00
]
2020-09-06 14:19:51 +00:00
[[package]]
name = "tracing-core"
2024-12-13 15:36:14 +00:00
version = "0.1.33"
2020-09-06 14:19:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
2020-09-06 14:19:51 +00:00
dependencies = [
2022-07-02 20:28:48 +00:00
"once_cell",
2020-09-06 14:19:51 +00:00
]
2021-08-18 21:32:58 +00:00
[[package]]
name = "tree_magic_db"
2024-10-23 11:41:11 +00:00
version = "3.0.1"
2021-08-18 21:32:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "bd30f22e7532ed0d3d846e24841a132c8dcb779f5b497bda82d904aa04755375"
2021-08-18 21:32:58 +00:00
2021-03-09 22:36:24 +00:00
[[package]]
name = "tree_magic_mini"
2024-10-23 11:41:11 +00:00
version = "3.1.6"
2021-03-09 22:36:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "aac5e8971f245c3389a5a76e648bfc80803ae066a1243a75db0064d7c1129d63"
2021-03-09 22:36:24 +00:00
dependencies = [
"fnv",
2024-03-29 11:04:40 +00:00
"memchr",
2022-02-26 23:34:57 +00:00
"nom",
2021-08-18 21:22:50 +00:00
"once_cell",
2021-03-09 22:36:24 +00:00
"petgraph",
2021-08-18 21:32:58 +00:00
"tree_magic_db",
2021-03-09 22:36:24 +00:00
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "typenum"
version = "1.17.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2020-07-08 19:26:46 +00:00
[[package]]
name = "unicase"
2024-10-23 11:41:11 +00:00
version = "2.8.0"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
2020-07-08 19:26:46 +00:00
[[package]]
name = "unicode-bidi"
2024-10-23 11:41:11 +00:00
version = "0.3.17"
2022-07-02 20:28:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
2022-07-02 20:28:48 +00:00
[[package]]
name = "unicode-ident"
2024-12-13 15:36:14 +00:00
version = "1.0.14"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
2020-07-08 19:26:46 +00:00
[[package]]
name = "unicode-normalization"
2024-10-23 11:41:11 +00:00
version = "0.1.24"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2020-07-08 19:26:46 +00:00
dependencies = [
"tinyvec",
]
2024-06-09 20:35:14 +00:00
[[package]]
name = "unicode-properties"
2024-10-23 11:41:11 +00:00
version = "0.1.3"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
2020-07-08 19:26:46 +00:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2020-07-08 19:26:46 +00:00
[[package]]
name = "url"
2024-12-13 15:36:14 +00:00
version = "2.5.4"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2020-07-08 19:26:46 +00:00
dependencies = [
"form_urlencoded",
2020-07-08 19:26:46 +00:00
"idna",
"percent-encoding",
]
[[package]]
name = "urlencoding"
2023-07-25 17:59:28 +00:00
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-25 17:59:28 +00:00
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2024-12-13 15:36:14 +00:00
[[package]]
name = "utf16_iter"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
[[package]]
name = "utf8_iter"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2024-03-29 11:04:40 +00:00
[[package]]
name = "v_htmlescape"
version = "0.15.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c"
2023-07-25 17:59:28 +00:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020-07-08 19:26:46 +00:00
[[package]]
name = "version_check"
version = "0.9.5"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2020-07-08 19:26:46 +00:00
2022-08-21 16:44:12 +00:00
[[package]]
name = "wasi"
2024-03-29 11:04:40 +00:00
version = "0.11.0+wasi-snapshot-preview1"
2022-08-21 16:44:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2022-08-21 16:44:12 +00:00
2022-04-23 22:37:20 +00:00
[[package]]
2024-03-29 11:04:40 +00:00
name = "wasite"
version = "0.1.0"
2022-04-23 22:37:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 11:04:40 +00:00
checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
2022-04-23 22:37:20 +00:00
2020-07-08 19:26:46 +00:00
[[package]]
name = "wasm-bindgen"
2024-12-13 15:36:14 +00:00
version = "0.2.99"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"cfg-if",
2024-10-23 11:41:11 +00:00
"once_cell",
2020-07-08 19:26:46 +00:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2024-12-13 15:36:14 +00:00
version = "0.2.99"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
2020-07-08 19:26:46 +00:00
dependencies = [
"bumpalo",
"log",
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
2020-07-08 19:26:46 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2024-12-13 15:36:14 +00:00
version = "0.2.99"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
2020-07-08 19:26:46 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-12-13 15:36:14 +00:00
version = "0.2.99"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
2020-07-08 19:26:46 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
2020-07-08 19:26:46 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-12-13 15:36:14 +00:00
version = "0.2.99"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
2020-07-08 19:26:46 +00:00
[[package]]
name = "web-sys"
2024-12-13 15:36:14 +00:00
version = "0.3.76"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
2020-07-08 19:26:46 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki-roots"
2024-12-13 15:36:14 +00:00
version = "0.26.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-13 15:36:14 +00:00
checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e"
2024-10-23 11:41:11 +00:00
dependencies = [
"rustls-pki-types",
]
[[package]]
name = "whoami"
2024-10-23 11:41:11 +00:00
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d"
2024-03-29 11:04:40 +00:00
dependencies = [
2024-10-23 11:41:11 +00:00
"redox_syscall",
2024-03-29 11:04:40 +00:00
"wasite",
]
2020-07-08 19:26:46 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-11-30 13:29:10 +00:00
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.6",
2023-02-08 18:24:46 +00:00
]
2024-10-23 11:41:11 +00:00
[[package]]
name = "windows-sys"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
"windows-targets 0.52.6",
]
2023-02-08 18:24:46 +00:00
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
2023-11-30 13:29:10 +00:00
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
version = "0.52.6"
2023-11-30 13:29:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2023-11-30 13:29:10 +00:00
dependencies = [
"windows_aarch64_gnullvm 0.52.6",
"windows_aarch64_msvc 0.52.6",
"windows_i686_gnu 0.52.6",
2024-06-09 20:35:14 +00:00
"windows_i686_gnullvm",
"windows_i686_msvc 0.52.6",
"windows_x86_64_gnu 0.52.6",
"windows_x86_64_gnullvm 0.52.6",
"windows_x86_64_msvc 0.52.6",
2023-02-08 18:24:46 +00:00
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
2023-11-30 13:29:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
2023-11-30 13:29:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
2024-06-09 20:35:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2024-06-09 20:35:14 +00:00
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
2023-11-30 13:29:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
2023-11-30 13:29:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
2023-11-30 13:29:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
2023-11-30 13:29:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2023-11-30 13:29:10 +00:00
2022-02-26 23:34:57 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-11-30 13:29:10 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
2023-11-30 13:29:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2023-11-30 13:29:10 +00:00
2024-12-13 15:36:14 +00:00
[[package]]
name = "write16"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
[[package]]
name = "writeable"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
[[package]]
name = "yoke"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
dependencies = [
"serde",
"stable_deref_trait",
"yoke-derive",
"zerofrom",
]
[[package]]
name = "yoke-derive"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
dependencies = [
"proc-macro2",
"quote",
"syn",
"synstructure",
]
[[package]]
name = "zerocopy"
version = "0.7.35"
2020-07-08 19:26:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
dependencies = [
2024-10-23 11:41:11 +00:00
"byteorder",
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
2024-10-23 11:41:11 +00:00
"syn",
]
2022-02-26 23:34:57 +00:00
2024-12-13 15:36:14 +00:00
[[package]]
name = "zerofrom"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
dependencies = [
"zerofrom-derive",
]
[[package]]
name = "zerofrom-derive"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
dependencies = [
"proc-macro2",
"quote",
"syn",
"synstructure",
]
[[package]]
2023-07-25 17:59:28 +00:00
name = "zeroize"
2024-06-09 20:35:14 +00:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 20:35:14 +00:00
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2024-12-13 15:36:14 +00:00
[[package]]
name = "zerovec"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
dependencies = [
"yoke",
"zerofrom",
"zerovec-derive",
]
[[package]]
name = "zerovec-derive"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-02-26 23:34:57 +00:00
[[package]]
name = "zstd"
version = "0.13.2"
2022-02-26 23:34:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
2022-02-26 23:34:57 +00:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2024-10-23 11:41:11 +00:00
version = "7.2.1"
2022-02-26 23:34:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
2020-07-08 19:26:46 +00:00
dependencies = [
2022-02-26 23:34:57 +00:00
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2024-10-23 11:41:11 +00:00
version = "2.0.13+zstd.1.5.6"
2022-02-26 23:34:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-23 11:41:11 +00:00
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
2022-02-26 23:34:57 +00:00
dependencies = [
"cc",
2023-01-27 19:56:44 +00:00
"pkg-config",
2020-07-08 19:26:46 +00:00
]