mail-server/Cargo.lock

7128 lines
165 KiB
Plaintext
Raw Normal View History

2023-05-17 18:45:43 +08:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-07-03 22:38:49 +08:00
[[package]]
name = "addr2line"
2023-08-29 01:44:23 +08:00
version = "0.21.0"
2023-07-03 22:38:49 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2023-07-03 22:38:49 +08:00
dependencies = [
"gimli",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "aead"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
dependencies = [
"crypto-common",
"generic-array",
]
[[package]]
name = "aes"
version = "0.8.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
2023-06-02 17:03:30 +08:00
"cipher 0.4.4",
2023-05-17 18:45:43 +08:00
"cpufeatures",
"zeroize",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "aes-gcm"
version = "0.10.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
2023-05-17 18:45:43 +08:00
dependencies = [
"aead",
2023-05-23 21:49:21 +08:00
"aes",
2023-06-02 17:03:30 +08:00
"cipher 0.4.4",
2023-05-17 18:45:43 +08:00
"ctr",
"ghash",
"subtle",
]
[[package]]
name = "aes-gcm-siv"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d"
dependencies = [
"aead",
2023-05-23 21:49:21 +08:00
"aes",
2023-06-02 17:03:30 +08:00
"cipher 0.4.4",
2023-05-17 18:45:43 +08:00
"ctr",
"polyval",
"subtle",
"zeroize",
]
[[package]]
name = "ahash"
version = "0.7.7"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"
2023-05-17 18:45:43 +08:00
dependencies = [
"getrandom",
2023-05-17 18:45:43 +08:00
"once_cell",
"version_check",
]
[[package]]
name = "ahash"
2023-12-30 16:43:18 +08:00
version = "0.8.7"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-30 16:43:18 +08:00
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"getrandom",
2023-05-17 18:45:43 +08:00
"once_cell",
"serde",
"version_check",
"zerocopy",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "aho-corasick"
2023-10-12 01:21:11 +08:00
version = "1.1.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-12 01:21:11 +08:00
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
2023-05-17 18:45:43 +08:00
dependencies = [
"memchr",
]
[[package]]
name = "allocator-api2"
2023-07-16 16:34:18 +08:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-16 16:34:18 +08:00
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2023-05-17 18:45:43 +08:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "anstream"
version = "0.6.5"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6"
2023-07-04 00:48:43 +08:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.4"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
2023-07-04 00:48:43 +08:00
[[package]]
name = "anstyle-parse"
version = "0.2.3"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
2023-07-04 00:48:43 +08:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.2"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
2023-07-04 00:48:43 +08:00
dependencies = [
"windows-sys 0.52.0",
2023-07-04 00:48:43 +08:00
]
[[package]]
name = "anstyle-wincon"
version = "3.0.2"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
2023-07-04 00:48:43 +08:00
dependencies = [
"anstyle",
"windows-sys 0.52.0",
2023-07-04 00:48:43 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "anyhow"
version = "1.0.79"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
[[package]]
name = "arc-swap"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
2023-05-17 18:45:43 +08:00
2023-06-02 17:03:30 +08:00
[[package]]
name = "argon2"
version = "0.5.2"
2023-06-02 17:03:30 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17ba4cac0a46bc1d2912652a751c47f2a9f3a7fe89bcae2275d418f5270402f9"
2023-06-02 17:03:30 +08:00
dependencies = [
"base64ct",
"blake2",
2023-07-16 16:34:18 +08:00
"cpufeatures",
2023-06-02 17:03:30 +08:00
"password-hash 0.5.0",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "arrayref"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
[[package]]
name = "arrayvec"
version = "0.7.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
2023-05-17 18:45:43 +08:00
2023-09-07 20:28:51 +08:00
[[package]]
name = "ascii-canvas"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6"
dependencies = [
"term",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "asn1-rs"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0"
dependencies = [
"asn1-rs-derive",
"asn1-rs-impl",
"displaydoc",
"nom",
"num-traits",
"rusticata-macros",
"thiserror",
"time",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "asn1-rs-derive"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
"synstructure",
]
[[package]]
name = "asn1-rs-impl"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-12-04 02:40:16 +08:00
[[package]]
name = "async-compression"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5"
dependencies = [
"flate2",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "async-recursion"
version = "1.0.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "async-stream"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite",
]
[[package]]
name = "async-stream-impl"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "async-trait"
version = "0.1.77"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
2023-06-07 00:53:29 +08:00
[[package]]
name = "attohttpc"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7"
dependencies = [
"http 0.2.11",
2023-06-07 00:53:29 +08:00
"log",
2023-08-29 18:31:08 +08:00
"rustls 0.20.9",
2023-06-07 00:53:29 +08:00
"serde",
"serde_json",
"url",
"webpki",
"webpki-roots 0.22.6",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2023-06-07 00:53:29 +08:00
[[package]]
name = "aws-creds"
version = "0.34.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3776743bb68d4ad02ba30ba8f64373f1be4e082fe47651767171ce75bb2f6cf5"
dependencies = [
"attohttpc",
"dirs",
"log",
"quick-xml 0.26.0",
"rust-ini",
"serde",
"thiserror",
"time",
2023-06-07 00:53:29 +08:00
"url",
]
[[package]]
name = "aws-region"
2023-10-18 02:56:48 +08:00
version = "0.25.4"
2023-06-07 00:53:29 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-18 02:56:48 +08:00
checksum = "42fed2b9fca70f2908268d057a607f2a906f47edbf856ea8587de9038d264e22"
2023-06-07 00:53:29 +08:00
dependencies = [
"thiserror",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "axum"
2023-08-10 01:47:27 +08:00
version = "0.6.20"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-10 01:47:27 +08:00
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
2023-05-17 18:45:43 +08:00
dependencies = [
"async-trait",
"axum-core",
"bitflags 1.3.2",
"bytes",
"futures-util",
"http 0.2.11",
"http-body 0.4.6",
2023-12-28 18:57:21 +08:00
"hyper 0.14.28",
2023-05-17 18:45:43 +08:00
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
"rustversion",
"serde",
"sync_wrapper",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http 0.2.11",
"http-body 0.4.6",
2023-05-17 18:45:43 +08:00
"mime",
"rustversion",
"tower-layer",
"tower-service",
]
2023-07-03 22:38:49 +08:00
[[package]]
name = "backtrace"
2023-08-29 01:44:23 +08:00
version = "0.3.69"
2023-07-03 22:38:49 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
2023-07-03 22:38:49 +08:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "base16ct"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
2023-12-04 02:40:16 +08:00
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
2023-05-17 18:45:43 +08:00
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "base64"
version = "0.21.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
2023-05-17 18:45:43 +08:00
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
2023-12-01 14:49:12 +08:00
[[package]]
name = "bigdecimal"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06619be423ea5bb86c95f087d5707942791a08a85530df0db2209a3ecfb8bc9"
dependencies = [
"autocfg",
"libm",
"num-bigint",
"num-integer",
"num-traits",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
[[package]]
name = "bindgen"
2023-12-02 22:52:05 +08:00
version = "0.65.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5"
2023-05-17 18:45:43 +08:00
dependencies = [
"bitflags 1.3.2",
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
2023-12-02 22:52:05 +08:00
"log",
2023-05-17 18:45:43 +08:00
"peeking_take_while",
2023-12-02 22:52:05 +08:00
"prettyplease",
2023-05-17 18:45:43 +08:00
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
"syn 2.0.47",
2023-12-02 22:52:05 +08:00
"which",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "bindgen"
2023-12-02 22:52:05 +08:00
version = "0.69.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-02 22:52:05 +08:00
"bitflags 2.4.1",
2023-05-17 18:45:43 +08:00
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
"peeking_take_while",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
2023-08-12 00:46:09 +08:00
[[package]]
name = "bit-set"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
dependencies = [
"bit-vec",
]
[[package]]
name = "bit-vec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
2023-05-17 18:45:43 +08:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
2023-10-18 02:56:48 +08:00
version = "2.4.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-18 02:56:48 +08:00
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
2023-05-17 18:45:43 +08:00
2023-08-02 00:39:33 +08:00
[[package]]
name = "bitvec"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
[[package]]
name = "bitvec-nom2"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4863ce31b7ff8812568eaffe956024c824d845a1f9f08c329706166c357cae53"
dependencies = [
"bitvec",
"nom",
]
2023-06-02 17:03:30 +08:00
[[package]]
name = "blake2"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
dependencies = [
"digest 0.10.7",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "blake3"
version = "1.5.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87"
2023-05-17 18:45:43 +08:00
dependencies = [
"arrayref",
"arrayvec",
"cc",
"cfg-if",
2023-07-16 16:34:18 +08:00
"constant_time_eq 0.3.0",
2023-06-02 17:03:30 +08:00
]
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
2023-08-02 00:39:33 +08:00
[[package]]
name = "block-padding"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
dependencies = [
"generic-array",
]
2023-06-02 17:03:30 +08:00
[[package]]
name = "blowfish"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32fa6a061124e37baba002e496d203e23ba3d7b73750be82dbfbc92913048a5b"
dependencies = [
"byteorder",
"cipher 0.2.5",
"opaque-debug",
]
[[package]]
name = "blowfish"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
dependencies = [
"byteorder",
"cipher 0.4.4",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "borsh"
2023-12-28 18:57:21 +08:00
version = "1.3.0"
2023-12-01 14:49:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "26d4d6dafc1a3bb54687538972158f07b2c948bc57d5890df22c0739098b3028"
2023-12-01 14:49:12 +08:00
dependencies = [
"borsh-derive",
"cfg_aliases",
]
[[package]]
name = "borsh-derive"
2023-12-28 18:57:21 +08:00
version = "1.3.0"
2023-12-01 14:49:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "bf4918709cc4dd777ad2b6303ed03cb37f3ca0ccede8c1b0d28ac6db8f4710e0"
2023-12-01 14:49:12 +08:00
dependencies = [
"once_cell",
"proc-macro-crate 2.0.0",
"proc-macro2",
"quote",
"syn 2.0.47",
2023-12-01 14:49:12 +08:00
"syn_derive",
]
[[package]]
name = "btoi"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad"
dependencies = [
"num-traits",
]
2023-08-02 00:39:33 +08:00
[[package]]
2023-09-07 20:28:51 +08:00
name = "buffered-reader"
version = "1.3.0"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b9b0a25eb06e83579bc985d836e1e3b957a7201301b48538764d2b2e78090d4"
2023-08-02 00:39:33 +08:00
dependencies = [
2023-09-07 20:28:51 +08:00
"lazy_static",
"libc",
2023-08-02 00:39:33 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "bumpalo"
version = "3.14.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2023-05-17 18:45:43 +08:00
2023-12-01 14:49:12 +08:00
[[package]]
name = "bytecheck"
version = "0.6.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
dependencies = [
"bytecheck_derive",
"ptr_meta",
"simdutf8",
]
[[package]]
name = "bytecheck_derive"
version = "0.6.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "bytemuck"
version = "1.14.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
2023-05-17 18:45:43 +08:00
[[package]]
name = "byteorder"
version = "1.5.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2023-05-17 18:45:43 +08:00
[[package]]
name = "bytes"
version = "1.5.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
2023-05-17 18:45:43 +08:00
[[package]]
name = "bzip2"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
version = "0.1.11+1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
dependencies = [
"cc",
"libc",
"pkg-config",
]
[[package]]
name = "camellia"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3264e2574e9ef2b53ce6f536dea83a69ac0bc600b762d1523ff83fe07230ce30"
dependencies = [
"byteorder",
"cipher 0.4.4",
]
[[package]]
name = "cast5"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b07d673db1ccf000e90f54b819db9e75a8348d6eb056e9b8ab53231b7a9911"
dependencies = [
"cipher 0.4.4",
]
2023-08-02 00:39:33 +08:00
[[package]]
name = "cbc"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
dependencies = [
"cipher 0.4.4",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "cc"
2023-08-29 01:44:23 +08:00
version = "1.0.83"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
2023-05-17 18:45:43 +08:00
dependencies = [
"jobserver",
2023-08-10 01:47:27 +08:00
"libc",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "cedarwood"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d910bedd62c24733263d0bed247460853c9d22e8956bd4cd964302095e04e90"
dependencies = [
"smallvec",
]
[[package]]
name = "cexpr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
dependencies = [
"nom",
]
[[package]]
name = "cfb"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
dependencies = [
"byteorder",
"fnv",
"uuid",
]
[[package]]
name = "cfb-mode"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "738b8d467867f80a71351933f70461f5b56f24d5c93e0cf216e59229c968d330"
dependencies = [
"cipher 0.4.4",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2023-12-01 14:49:12 +08:00
[[package]]
name = "cfg_aliases"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
2023-05-17 18:45:43 +08:00
[[package]]
name = "chrono"
version = "0.4.31"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
2023-05-17 18:45:43 +08:00
dependencies = [
"android-tzdata",
2023-05-17 18:45:43 +08:00
"iana-time-zone",
"js-sys",
"num-traits",
"serde",
"wasm-bindgen",
"windows-targets 0.48.5",
2023-05-17 18:45:43 +08:00
]
2023-06-02 17:03:30 +08:00
[[package]]
name = "cipher"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
dependencies = [
"generic-array",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "cipher"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
"zeroize",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "clang-sys"
version = "1.7.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
2023-05-17 18:45:43 +08:00
dependencies = [
"glob",
"libc",
"libloading",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "clap"
2023-12-30 00:33:55 +08:00
version = "4.4.12"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-30 00:33:55 +08:00
checksum = "dcfab8ba68f3668e89f6ff60f5b205cea56aa7b769451a59f34b8682f51c056d"
2023-07-04 00:48:43 +08:00
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
2023-12-30 00:33:55 +08:00
version = "4.4.12"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-30 00:33:55 +08:00
checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9"
2023-07-04 00:48:43 +08:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
version = "4.4.7"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
2023-07-04 00:48:43 +08:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 2.0.47",
2023-07-04 00:48:43 +08:00
]
[[package]]
name = "clap_lex"
version = "0.6.0"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
2023-07-04 00:48:43 +08:00
[[package]]
name = "cmac"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8543454e3c3f5126effff9cd44d562af4e31fb8ce1cc0d3dcd8f084515dbc1aa"
dependencies = [
"cipher 0.4.4",
"dbl",
"digest 0.10.7",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "cmake"
version = "0.1.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
dependencies = [
"cc",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2023-12-13 01:45:52 +08:00
[[package]]
name = "combine"
version = "4.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
dependencies = [
"bytes",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "console"
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
dependencies = [
"encode_unicode 0.3.6",
"lazy_static",
"libc",
"unicode-width",
"windows-sys 0.45.0",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "const-oid"
2023-12-28 18:57:21 +08:00
version = "0.9.6"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
2023-05-17 18:45:43 +08:00
2023-08-29 01:44:23 +08:00
[[package]]
name = "const_panic"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6051f239ecec86fde3410901ab7860d458d160371533842974fc61f96d15879b"
2023-05-17 18:45:43 +08:00
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "constant_time_eq"
2023-07-16 16:34:18 +08:00
version = "0.3.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-16 16:34:18 +08:00
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
2023-05-17 18:45:43 +08:00
[[package]]
name = "core-foundation"
2023-12-02 22:52:05 +08:00
version = "0.9.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
2023-05-17 18:45:43 +08:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2023-12-02 22:52:05 +08:00
version = "0.8.6"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
2023-05-17 18:45:43 +08:00
[[package]]
name = "cpufeatures"
version = "0.2.11"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
2023-05-17 18:45:43 +08:00
dependencies = [
"libc",
]
2023-12-13 01:45:52 +08:00
[[package]]
name = "crc16"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff"
2023-05-17 18:45:43 +08:00
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "crossbeam"
2023-12-28 18:57:21 +08:00
version = "0.8.3"
2023-12-01 14:49:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "6eb9105919ca8e40d437fc9cbb8f1975d916f1bd28afe795a48aae32a2cc8920"
2023-12-01 14:49:12 +08:00
dependencies = [
"cfg-if",
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
"crossbeam-utils",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "crossbeam-channel"
2023-12-28 18:57:21 +08:00
version = "0.5.10"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2023-12-28 18:57:21 +08:00
version = "0.8.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2023-12-28 18:57:21 +08:00
version = "0.9.17"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
2023-05-17 18:45:43 +08:00
dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-queue"
2023-12-28 18:57:21 +08:00
version = "0.3.10"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "adc6598521bb5a83d491e8c1fe51db7296019d2ca3cb93cc6c2a20369a4d78a2"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2023-12-28 18:57:21 +08:00
version = "0.8.18"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
]
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
[[package]]
name = "crypto-bigint"
version = "0.5.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
2023-05-17 18:45:43 +08:00
dependencies = [
"generic-array",
"rand_core",
2023-05-17 18:45:43 +08:00
"subtle",
"zeroize",
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"rand_core",
2023-05-17 18:45:43 +08:00
"typenum",
]
2023-06-02 17:03:30 +08:00
[[package]]
name = "crypto-mac"
2023-12-08 17:46:20 +08:00
version = "0.10.0"
2023-06-02 17:03:30 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 17:46:20 +08:00
checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6"
2023-06-02 17:03:30 +08:00
dependencies = [
"generic-array",
"subtle",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "csv"
version = "1.3.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
2023-05-17 18:45:43 +08:00
dependencies = [
"csv-core",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.11"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
2023-05-17 18:45:43 +08:00
dependencies = [
"memchr",
]
[[package]]
name = "ctr"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
dependencies = [
2023-06-02 17:03:30 +08:00
"cipher 0.4.4",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "curve25519-dalek"
version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c"
dependencies = [
"cfg-if",
"cpufeatures",
"curve25519-dalek-derive",
"digest 0.10.7",
"fiat-crypto",
"platforms",
2023-12-04 02:40:16 +08:00
"rustc_version 0.4.0",
"subtle",
"zeroize",
]
[[package]]
name = "curve25519-dalek-derive"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
]
2023-12-04 02:40:16 +08:00
[[package]]
name = "darling"
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
dependencies = [
"darling_core 0.13.4",
"darling_macro 0.13.4",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "darling"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
dependencies = [
2023-12-04 02:40:16 +08:00
"darling_core 0.20.3",
"darling_macro 0.20.3",
]
[[package]]
name = "darling_core"
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn 1.0.109",
2023-12-01 14:49:12 +08:00
]
[[package]]
name = "darling_core"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn 2.0.47",
2023-12-01 14:49:12 +08:00
]
2023-12-04 02:40:16 +08:00
[[package]]
name = "darling_macro"
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
dependencies = [
"darling_core 0.13.4",
"quote",
"syn 1.0.109",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "darling_macro"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
dependencies = [
2023-12-04 02:40:16 +08:00
"darling_core 0.20.3",
2023-12-01 14:49:12 +08:00
"quote",
"syn 2.0.47",
2023-12-01 14:49:12 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "dashmap"
version = "5.5.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"hashbrown 0.14.3",
2023-05-17 18:45:43 +08:00
"lock_api",
"once_cell",
"parking_lot_core",
]
[[package]]
name = "data-encoding"
version = "2.5.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
2023-05-17 18:45:43 +08:00
[[package]]
name = "dbl"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd2735a791158376708f9347fe8faba9667589d82427ef3aed6794a8981de3d9"
dependencies = [
"generic-array",
]
2023-11-30 19:43:28 +08:00
[[package]]
name = "deadpool"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490"
dependencies = [
"async-trait",
"deadpool-runtime",
"num_cpus",
"tokio",
]
[[package]]
name = "deadpool-postgres"
version = "0.12.1"
2023-11-30 19:43:28 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bda39fa1cfff190d8924d447ad04fd22772c250438ca5ce1dfb3c80621c05aaa"
2023-11-30 19:43:28 +08:00
dependencies = [
"deadpool",
"tokio",
"tokio-postgres",
"tracing",
]
[[package]]
name = "deadpool-runtime"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49"
dependencies = [
"tokio",
]
[[package]]
name = "decancer"
version = "1.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "080b09f6adad25c23d8c47c54e52e59b0dc09d079c4b23e0f147dac440359d0d"
2023-05-17 18:45:43 +08:00
[[package]]
name = "der"
2023-08-10 01:47:27 +08:00
version = "0.7.8"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-10 01:47:27 +08:00
checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
2023-05-17 18:45:43 +08:00
dependencies = [
"const-oid",
"pem-rfc7468",
2023-05-17 18:45:43 +08:00
"zeroize",
]
[[package]]
name = "der-parser"
version = "8.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e"
dependencies = [
"asn1-rs",
"displaydoc",
"nom",
"num-bigint",
"num-traits",
"rusticata-macros",
]
2023-08-10 01:47:27 +08:00
[[package]]
name = "deranged"
version = "0.3.11"
2023-08-10 01:47:27 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
2023-08-10 01:47:27 +08:00
dependencies = [
2023-10-15 15:07:19 +08:00
"powerfmt",
2023-08-10 01:47:27 +08:00
"serde",
]
[[package]]
name = "des"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e"
dependencies = [
"cipher 0.4.4",
]
2023-07-09 17:06:37 +08:00
[[package]]
name = "dialoguer"
2023-10-25 15:56:46 +08:00
version = "0.11.0"
2023-07-09 17:06:37 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 15:56:46 +08:00
checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de"
2023-07-09 17:06:37 +08:00
dependencies = [
"console",
"shell-words",
"tempfile",
2023-10-25 15:56:46 +08:00
"thiserror",
2023-07-09 17:06:37 +08:00
"zeroize",
]
2023-09-07 20:28:51 +08:00
[[package]]
name = "diff"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
2023-06-02 17:03:30 +08:00
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "digest"
2023-05-23 21:49:21 +08:00
version = "0.10.7"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 21:49:21 +08:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-06-02 17:03:30 +08:00
"block-buffer 0.10.4",
2023-05-17 18:45:43 +08:00
"const-oid",
"crypto-common",
"subtle",
]
2023-05-31 01:27:54 +08:00
[[package]]
name = "directory"
version = "0.1.0"
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
2023-06-02 17:03:30 +08:00
"argon2",
2023-05-31 01:27:54 +08:00
"async-trait",
"deadpool",
2023-07-24 17:48:23 +08:00
"futures",
2023-12-14 19:35:25 +08:00
"jmap_proto",
2023-05-31 01:27:54 +08:00
"ldap3",
2023-06-02 17:03:30 +08:00
"lru-cache",
"mail-builder",
"mail-parser",
2023-05-31 01:27:54 +08:00
"mail-send",
2023-06-02 17:03:30 +08:00
"md5",
"parking_lot",
"password-hash 0.5.0",
2023-07-16 16:34:18 +08:00
"pbkdf2 0.12.2",
2023-06-02 17:03:30 +08:00
"pwhash",
2023-07-28 02:18:34 +08:00
"regex",
"rustls 0.22.1",
2023-12-08 17:46:20 +08:00
"rustls-pki-types",
2023-06-02 17:03:30 +08:00
"scrypt",
"serde",
2023-06-02 17:03:30 +08:00
"sha1",
"sha2 0.10.8",
2023-05-31 01:27:54 +08:00
"smtp-proto",
"store",
2023-05-31 01:27:54 +08:00
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.25.0",
2023-05-31 01:27:54 +08:00
"tracing",
2023-06-02 17:03:30 +08:00
"utils",
2023-05-31 01:27:54 +08:00
]
2023-06-07 00:53:29 +08:00
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
"cfg-if",
"dirs-sys-next",
]
2023-06-07 00:53:29 +08:00
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
"redox_users",
"winapi",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "displaydoc"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
2023-06-07 00:53:29 +08:00
[[package]]
name = "dlv-list"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
2023-08-02 00:39:33 +08:00
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
[[package]]
name = "dsa"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d88afbb2443ba68ef8593de497e830b2e276434e1408f85cd760b1107b44ead0"
dependencies = [
"digest 0.10.7",
"num-bigint-dig",
"num-traits",
"pkcs8",
"rfc6979",
"sha2 0.10.8",
"signature",
"zeroize",
]
2023-09-07 20:28:51 +08:00
[[package]]
name = "dyn-clone"
version = "1.0.16"
2023-09-07 20:28:51 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
2023-09-07 20:28:51 +08:00
[[package]]
name = "eax"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9954fabd903b82b9d7a68f65f97dc96dd9ad368e40ccc907a7c19d53e6bfac28"
dependencies = [
"aead",
"cipher 0.4.4",
"cmac",
"ctr",
"subtle",
]
[[package]]
name = "ecb"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a8bfa975b1aec2145850fcaa1c6fe269a16578c44705a532ae3edc92b8881c7"
dependencies = [
"cipher 0.4.4",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "ecdsa"
version = "0.16.9"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
2023-05-17 18:45:43 +08:00
dependencies = [
"der",
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
2023-05-17 18:45:43 +08:00
"elliptic-curve",
"rfc6979",
"signature",
"spki",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "ece"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8dd5463ffecc0677adcd786c4481f73b215714d4757edf2eb37a573c03d00459"
dependencies = [
"base64 0.13.1",
"byteorder",
"hex",
"hkdf",
"lazy_static",
"once_cell",
"openssl",
"serde",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
"thiserror",
]
[[package]]
name = "ed25519"
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
dependencies = [
"pkcs8",
"signature",
]
[[package]]
name = "ed25519-dalek"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f628eaec48bfd21b865dc2950cfa014450c01d2fa2b69a86c2fd5844ec523c0"
dependencies = [
"curve25519-dalek",
"ed25519",
"rand_core",
"serde",
"sha2 0.10.8",
"subtle",
"zeroize",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "either"
2023-07-28 02:18:34 +08:00
version = "1.9.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-28 02:18:34 +08:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2023-05-17 18:45:43 +08:00
2023-12-04 02:40:16 +08:00
[[package]]
name = "elasticsearch"
version = "8.5.0-alpha.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40d9bd57d914cc66ce878f098f63ed7b5d5b64c30644a5adb950b008f874a6c6"
dependencies = [
"base64 0.11.0",
"bytes",
"dyn-clone",
"lazy_static",
"percent-encoding",
"reqwest",
"rustc_version 0.2.3",
"serde",
"serde_json",
"serde_with",
"url",
"void",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "elliptic-curve"
version = "0.13.8"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
2023-05-17 18:45:43 +08:00
dependencies = [
"base16ct",
"crypto-bigint",
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
2023-05-17 18:45:43 +08:00
"ff",
"generic-array",
"group",
"hkdf",
"pem-rfc7468",
"pkcs8",
"rand_core",
2023-05-17 18:45:43 +08:00
"sec1",
"subtle",
"zeroize",
]
2023-09-07 20:28:51 +08:00
[[package]]
name = "ena"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1"
dependencies = [
"log",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "encode_unicode"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
2023-05-17 18:45:43 +08:00
[[package]]
name = "encoding_rs"
2023-08-29 01:44:23 +08:00
version = "0.8.33"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
]
[[package]]
name = "enum-as-inner"
2023-09-06 00:23:52 +08:00
version = "0.6.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-06 00:23:52 +08:00
checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a"
2023-05-17 18:45:43 +08:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "equivalent"
2023-07-16 16:34:18 +08:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-16 16:34:18 +08:00
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-05-17 18:45:43 +08:00
[[package]]
name = "errno"
2023-12-02 22:52:05 +08:00
version = "0.3.8"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
2023-05-17 18:45:43 +08:00
dependencies = [
"libc",
2023-12-02 22:52:05 +08:00
"windows-sys 0.52.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "fallible-iterator"
version = "0.2.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2023-05-17 18:45:43 +08:00
[[package]]
name = "fallible-iterator"
version = "0.3.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
2023-05-17 18:45:43 +08:00
[[package]]
name = "fallible-streaming-iterator"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
2023-08-12 00:46:09 +08:00
[[package]]
name = "fancy-regex"
2023-12-28 18:57:21 +08:00
version = "0.13.0"
2023-08-12 00:46:09 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
2023-08-12 00:46:09 +08:00
dependencies = [
"bit-set",
2023-12-28 18:57:21 +08:00
"regex-automata 0.4.3",
"regex-syntax 0.8.2",
2023-08-12 00:46:09 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "farmhash"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f35ce9c8fb9891c75ceadbc330752951a4e369b50af10775955aeb9af3eee34b"
[[package]]
name = "fast-float"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
[[package]]
name = "fastrand"
version = "2.0.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
2023-05-17 18:45:43 +08:00
[[package]]
name = "ff"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
dependencies = [
"rand_core",
2023-05-17 18:45:43 +08:00
"subtle",
]
[[package]]
name = "fiat-crypto"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27573eac26f4dd11e2b1916c3fe1baa56407c83c71a773a8ba17ec0bca03b6b7"
2023-07-11 23:16:08 +08:00
[[package]]
name = "filetime"
version = "0.2.23"
2023-07-11 23:16:08 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
2023-07-11 23:16:08 +08:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"windows-sys 0.52.0",
2023-07-11 23:16:08 +08:00
]
[[package]]
name = "finl_unicode"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6"
2023-05-17 18:45:43 +08:00
[[package]]
name = "fixedbitset"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
[[package]]
name = "flate2"
2023-10-15 15:07:19 +08:00
version = "1.0.28"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-15 15:07:19 +08:00
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
2023-05-17 18:45:43 +08:00
dependencies = [
"crc32fast",
"libz-sys",
"miniz_oxide",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form-data"
version = "0.5.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfaaa4f36921bef661ea6e0ee5453db203a86263c6984be5616eee4e72be68e7"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"http 1.0.0",
2023-05-17 18:45:43 +08:00
"httparse",
"memchr",
"mime",
"serde",
"thiserror",
"tracing",
]
[[package]]
name = "form_urlencoded"
version = "1.2.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2023-05-17 18:45:43 +08:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "foundationdb"
2023-06-08 20:53:29 +08:00
version = "0.8.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-08 20:53:29 +08:00
checksum = "8696fd1be198f101eb58aeecf0f504fc02b28c7afcc008b4e4a998a91b305108"
2023-05-17 18:45:43 +08:00
dependencies = [
"async-recursion",
"async-trait",
"foundationdb-gen",
"foundationdb-macros",
"foundationdb-sys",
"futures",
"memchr",
"rand",
2023-06-08 20:53:29 +08:00
"serde",
"serde_bytes",
"serde_json",
2023-05-17 18:45:43 +08:00
"static_assertions",
"uuid",
]
[[package]]
name = "foundationdb-gen"
2023-06-08 20:53:29 +08:00
version = "0.8.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-08 20:53:29 +08:00
checksum = "62239700f01b041b6372aaeb847c52f960e1a69fd2b1025dc995ea3dd90e3308"
2023-05-17 18:45:43 +08:00
dependencies = [
"xml-rs",
]
[[package]]
name = "foundationdb-macros"
2023-06-08 20:53:29 +08:00
version = "0.2.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-08 20:53:29 +08:00
checksum = "83c8d52fe8b46ab822b4decdcc0d6d85aeedfc98f0d52ba2bd4aec4a97807516"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-06-08 20:53:29 +08:00
"proc-macro2",
2023-05-17 18:45:43 +08:00
"quote",
"syn 2.0.47",
2023-06-08 20:53:29 +08:00
"try_map",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "foundationdb-sys"
2023-06-08 20:53:29 +08:00
version = "0.8.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-08 20:53:29 +08:00
checksum = "98e49545f5393d276b7b888c77e3f9519fd33727435f8244344be72c3284256f"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-06-08 20:53:29 +08:00
"bindgen 0.65.1",
2023-05-17 18:45:43 +08:00
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "frunk"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11a351b59e12f97b4176ee78497dff72e4276fb1ceb13e19056aca7fa0206287"
dependencies = [
"frunk_core",
"frunk_derives",
"frunk_proc_macros",
]
[[package]]
name = "frunk_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af2469fab0bd07e64ccf0ad57a1438f63160c69b2e57f04a439653d68eb558d6"
[[package]]
name = "frunk_derives"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fa992f1656e1707946bbba340ad244f0814009ef8c0118eb7b658395f19a2e"
dependencies = [
"frunk_proc_macro_helpers",
"quote",
"syn 2.0.47",
2023-12-01 14:49:12 +08:00
]
[[package]]
name = "frunk_proc_macro_helpers"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35b54add839292b743aeda6ebedbd8b11e93404f902c56223e51b9ec18a13d2c"
dependencies = [
"frunk_core",
"proc-macro2",
"quote",
"syn 2.0.47",
2023-12-01 14:49:12 +08:00
]
[[package]]
name = "frunk_proc_macros"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71b85a1d4a9a6b300b41c05e8e13ef2feca03e0334127f29eca9506a7fe13a93"
dependencies = [
"frunk_core",
"frunk_proc_macro_helpers",
"quote",
"syn 2.0.47",
2023-12-01 14:49:12 +08:00
]
2023-08-02 00:39:33 +08:00
[[package]]
name = "funty"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
2023-05-17 18:45:43 +08:00
[[package]]
name = "futures"
2023-12-28 18:57:21 +08:00
version = "0.3.30"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
2023-05-17 18:45:43 +08:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-12-28 18:57:21 +08:00
version = "0.3.30"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
2023-05-17 18:45:43 +08:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-12-28 18:57:21 +08:00
version = "0.3.30"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
2023-05-17 18:45:43 +08:00
[[package]]
name = "futures-executor"
2023-12-28 18:57:21 +08:00
version = "0.3.30"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
2023-05-17 18:45:43 +08:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-12-28 18:57:21 +08:00
version = "0.3.30"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
2023-05-17 18:45:43 +08:00
[[package]]
name = "futures-macro"
2023-12-28 18:57:21 +08:00
version = "0.3.30"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "futures-sink"
2023-12-28 18:57:21 +08:00
version = "0.3.30"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
2023-05-17 18:45:43 +08:00
[[package]]
name = "futures-task"
2023-12-28 18:57:21 +08:00
version = "0.3.30"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
2023-05-17 18:45:43 +08:00
[[package]]
name = "futures-util"
2023-12-28 18:57:21 +08:00
version = "0.3.30"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
2023-05-17 18:45:43 +08:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
"zeroize",
]
[[package]]
name = "gethostname"
2023-05-23 21:49:21 +08:00
version = "0.4.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 21:49:21 +08:00
checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
2023-05-17 18:45:43 +08:00
dependencies = [
"libc",
2023-08-29 01:44:23 +08:00
"windows-targets 0.48.5",
2023-05-17 18:45:43 +08:00
]
2023-09-07 20:28:51 +08:00
[[package]]
name = "getrandom"
version = "0.2.11"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
2023-09-07 20:28:51 +08:00
"js-sys",
2023-05-17 18:45:43 +08:00
"libc",
"wasi",
2023-09-07 20:28:51 +08:00
"wasm-bindgen",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "ghash"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
dependencies = [
"opaque-debug",
"polyval",
]
2023-07-03 22:38:49 +08:00
[[package]]
name = "gimli"
version = "0.28.1"
2023-07-03 22:38:49 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2023-07-03 22:38:49 +08:00
2023-05-17 18:45:43 +08:00
[[package]]
name = "glob"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]]
name = "group"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
dependencies = [
"ff",
"rand_core",
2023-05-17 18:45:43 +08:00
"subtle",
]
[[package]]
name = "h2"
version = "0.3.22"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http 0.2.11",
"indexmap 2.1.0",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "h2"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1d308f63daf4181410c242d34c11f928dcb3aa105852019e043c9d1f4e4368a"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http 1.0.0",
"indexmap 2.1.0",
2023-05-17 18:45:43 +08:00
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [
"ahash 0.7.7",
2023-05-17 18:45:43 +08:00
]
2023-05-23 21:49:21 +08:00
[[package]]
name = "hashbrown"
version = "0.14.3"
2023-05-23 21:49:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
2023-05-23 21:49:21 +08:00
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
"allocator-api2",
2023-05-23 21:49:21 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "hashlink"
2023-08-29 18:31:08 +08:00
version = "0.8.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 18:31:08 +08:00
checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
2023-05-17 18:45:43 +08:00
dependencies = [
"hashbrown 0.14.3",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
[[package]]
name = "hermit-abi"
version = "0.3.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2023-05-17 18:45:43 +08:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2023-10-21 22:31:10 +08:00
[[package]]
name = "hickory-proto"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "091a6fbccf4860009355e3efc52ff4acf37a63489aad7435372d44ceeb6fbbcf"
dependencies = [
"async-trait",
"cfg-if",
"data-encoding",
"enum-as-inner",
"futures-channel",
"futures-io",
"futures-util",
"idna 0.4.0",
"ipnet",
"once_cell",
"rand",
2023-10-21 22:31:10 +08:00
"ring 0.16.20",
"rustls 0.21.10",
2023-12-02 22:52:05 +08:00
"rustls-pemfile 1.0.4",
2023-10-21 22:31:10 +08:00
"thiserror",
"tinyvec",
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.24.1",
2023-10-21 22:31:10 +08:00
"tracing",
"url",
]
[[package]]
name = "hickory-resolver"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35b8f021164e6a984c9030023544c57789c51760065cd510572fedcfb04164e8"
dependencies = [
"cfg-if",
"futures-util",
"hickory-proto",
"ipconfig",
"lru-cache",
"once_cell",
"parking_lot",
"rand",
2023-10-21 22:31:10 +08:00
"resolv-conf",
"rustls 0.21.10",
2023-10-21 22:31:10 +08:00
"smallvec",
"thiserror",
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.24.1",
2023-10-21 22:31:10 +08:00
"tracing",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "hkdf"
2023-12-28 18:57:21 +08:00
version = "0.12.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-06-02 17:03:30 +08:00
"hmac 0.12.1",
]
[[package]]
name = "hmac"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
dependencies = [
"crypto-mac",
"digest 0.9.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "home"
2023-12-28 18:57:21 +08:00
version = "0.5.9"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-28 18:57:21 +08:00
"windows-sys 0.52.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
"winapi",
]
[[package]]
name = "http"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http"
version = "1.0.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
version = "0.4.6"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"http 0.2.11",
2023-05-17 18:45:43 +08:00
"pin-project-lite",
]
[[package]]
name = "http-body"
version = "1.0.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"http 1.0.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "http-body-util"
version = "0.1.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cb79eb393015dadd30fc252023adb0b2400a0caee0fa2a077e6e21a551e840"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"futures-util",
"http 1.0.0",
"http-body 1.0.0",
2023-05-17 18:45:43 +08:00
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
2023-08-19 01:48:57 +08:00
version = "1.0.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:48:57 +08:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2023-05-17 18:45:43 +08:00
2023-07-04 00:48:43 +08:00
[[package]]
name = "human-size"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9994b79e8c1a39b3166c63ae7823bb2b00831e2a96a31399c50fe69df408eaeb"
2023-05-17 18:45:43 +08:00
[[package]]
name = "hyper"
2023-12-28 18:57:21 +08:00
version = "0.14.28"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2 0.3.22",
"http 0.2.11",
"http-body 0.4.6",
2023-05-17 18:45:43 +08:00
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
2023-12-28 18:57:21 +08:00
"socket2 0.5.5",
2023-05-17 18:45:43 +08:00
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper"
2023-12-28 18:57:21 +08:00
version = "1.1.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"h2 0.4.0",
"http 1.0.0",
"http-body 1.0.0",
2023-05-17 18:45:43 +08:00
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"tokio",
]
[[package]]
name = "hyper-rustls"
version = "0.24.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
2023-05-17 18:45:43 +08:00
dependencies = [
"futures-util",
"http 0.2.11",
2023-12-28 18:57:21 +08:00
"hyper 0.14.28",
"rustls 0.21.10",
2023-05-17 18:45:43 +08:00
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.24.1",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
2023-12-28 18:57:21 +08:00
"hyper 0.14.28",
2023-05-17 18:45:43 +08:00
"pin-project-lite",
"tokio",
"tokio-io-timeout",
]
2023-07-16 16:34:18 +08:00
[[package]]
name = "hyper-util"
2023-12-28 18:57:21 +08:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "bdea9aac0dbe5a9240d68cfd9501e2db94222c6dc06843e06640b9e07f0fdc67"
2023-07-16 16:34:18 +08:00
dependencies = [
2023-09-20 01:02:42 +08:00
"bytes",
2023-07-16 16:34:18 +08:00
"futures-channel",
"futures-util",
"http 1.0.0",
"http-body 1.0.0",
2023-12-28 18:57:21 +08:00
"hyper 1.1.0",
2023-07-16 16:34:18 +08:00
"pin-project-lite",
2023-10-21 22:31:10 +08:00
"socket2 0.5.5",
2023-07-16 16:34:18 +08:00
"tokio",
"tracing",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "iana-time-zone"
version = "0.1.59"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
2023-05-17 18:45:43 +08:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
2023-10-18 02:56:48 +08:00
"windows-core",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "iana-time-zone-haiku"
2023-05-23 21:49:21 +08:00
version = "0.1.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 21:49:21 +08:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-05-23 21:49:21 +08:00
"cc",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "idea"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "075557004419d7f2031b8bb7f44bb43e55a83ca7b63076a8fb8fe75753836477"
dependencies = [
"cipher 0.4.4",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2023-08-02 00:39:33 +08:00
[[package]]
2023-09-07 20:28:51 +08:00
name = "idna"
version = "0.4.0"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
2023-08-02 00:39:33 +08:00
dependencies = [
2023-09-07 20:28:51 +08:00
"unicode-bidi",
"unicode-normalization",
2023-08-02 00:39:33 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "idna"
version = "0.5.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2023-05-17 18:45:43 +08:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "imagesize"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "029d73f573d8e8d63e6d5020011d3255b28c3ba85d6cf870a07184ed23de9284"
2023-06-14 03:52:13 +08:00
[[package]]
name = "imap"
2024-01-14 17:53:41 +08:00
version = "0.5.3"
2023-06-22 01:26:28 +08:00
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
"dashmap",
2023-06-22 01:26:28 +08:00
"directory",
"imap_proto",
"jmap",
2023-06-23 01:29:39 +08:00
"jmap_proto",
"mail-parser",
"mail-send",
2023-06-26 02:00:45 +08:00
"md5",
"nlp",
2023-06-22 01:26:28 +08:00
"parking_lot",
"rand",
"rustls 0.22.1",
2023-12-04 02:40:16 +08:00
"rustls-pemfile 2.0.0",
2023-06-23 01:29:39 +08:00
"store",
2023-06-22 01:26:28 +08:00
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.25.0",
2023-06-22 01:26:28 +08:00
"tracing",
"utils",
]
2023-06-14 03:52:13 +08:00
[[package]]
name = "imap_proto"
version = "0.1.0"
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
2023-06-14 03:52:13 +08:00
"chrono",
2023-06-23 01:29:39 +08:00
"jmap_proto",
2023-06-14 03:52:13 +08:00
"mail-parser",
"store",
"tokio",
2023-06-14 03:52:13 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
2023-05-23 21:49:21 +08:00
"hashbrown 0.12.3",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "indexmap"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
dependencies = [
"equivalent",
"hashbrown 0.14.3",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "indicatif"
version = "0.17.7"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25"
2023-07-04 00:48:43 +08:00
dependencies = [
"console",
"instant",
"number_prefix",
"portable-atomic",
"unicode-width",
]
[[package]]
name = "infer"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb33622da908807a06f9513c19b3c1ad50fab3e4137d82a78107d502075aa199"
dependencies = [
"cfb",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
2023-08-02 00:39:33 +08:00
"block-padding",
2023-05-17 18:45:43 +08:00
"generic-array",
]
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
[[package]]
name = "ipconfig"
2023-06-08 20:53:29 +08:00
version = "0.3.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-08 20:53:29 +08:00
checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-10-21 22:31:10 +08:00
"socket2 0.5.5",
2023-05-17 18:45:43 +08:00
"widestring",
2023-06-08 20:53:29 +08:00
"windows-sys 0.48.0",
2023-08-29 01:44:23 +08:00
"winreg",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "ipnet"
version = "2.9.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
2023-05-17 18:45:43 +08:00
2023-07-04 00:48:43 +08:00
[[package]]
name = "is-terminal"
2023-12-30 00:33:55 +08:00
version = "0.4.10"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-30 00:33:55 +08:00
checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
2023-07-04 00:48:43 +08:00
dependencies = [
"hermit-abi",
2023-07-22 02:21:51 +08:00
"rustix",
2023-12-30 00:33:55 +08:00
"windows-sys 0.52.0",
2023-07-04 00:48:43 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "itertools"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.10"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
2023-05-17 18:45:43 +08:00
[[package]]
name = "jemalloc-sys"
2023-08-10 01:47:27 +08:00
version = "0.5.4+5.3.0-patched"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-10 01:47:27 +08:00
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "jemallocator"
2023-08-10 01:47:27 +08:00
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-10 01:47:27 +08:00
checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
dependencies = [
"jemalloc-sys",
"libc",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "jieba-rs"
2023-07-22 02:21:51 +08:00
version = "0.6.8"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-22 02:21:51 +08:00
checksum = "93f0c1347cd3ac8d7c6e3a2dc33ac496d365cf09fc0831aa61111e1a6738983e"
2023-05-17 18:45:43 +08:00
dependencies = [
"cedarwood",
"fxhash",
"hashbrown 0.14.3",
2023-05-17 18:45:43 +08:00
"lazy_static",
"phf",
"phf_codegen",
"regex",
]
[[package]]
name = "jmap"
2024-01-14 17:53:41 +08:00
version = "0.5.3"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-08-02 00:39:33 +08:00
"aes",
2023-05-17 18:45:43 +08:00
"aes-gcm",
"aes-gcm-siv",
"async-stream",
2023-08-02 00:39:33 +08:00
"async-trait",
"base64 0.21.5",
2023-05-17 18:45:43 +08:00
"bincode",
2023-08-02 00:39:33 +08:00
"cbc",
"chrono",
"dashmap",
2023-05-31 01:27:54 +08:00
"directory",
2023-05-17 18:45:43 +08:00
"ece",
"form-data",
"form_urlencoded",
"futures-util",
"hkdf",
"http-body-util",
2023-12-28 18:57:21 +08:00
"hyper 1.1.0",
2023-07-16 16:34:18 +08:00
"hyper-util",
2023-05-17 18:45:43 +08:00
"jmap_proto",
"lz4_flex",
2023-05-17 18:45:43 +08:00
"mail-builder",
"mail-parser",
"mail-send",
"mime",
"nlp",
2023-05-17 18:45:43 +08:00
"p256",
"rand",
2023-08-02 00:39:33 +08:00
"rasn",
"rasn-cms",
"rasn-pkix",
2023-05-17 18:45:43 +08:00
"reqwest",
2023-08-02 00:39:33 +08:00
"rsa",
2023-09-07 20:28:51 +08:00
"sequoia-openpgp",
2023-05-17 18:45:43 +08:00
"serde",
"serde_json",
2023-11-01 19:08:24 +08:00
"sha1",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
"sieve-rs",
2023-05-21 02:50:24 +08:00
"smtp",
2023-05-23 21:49:21 +08:00
"smtp-proto",
2023-05-17 18:45:43 +08:00
"store",
"tokio",
2023-12-28 18:57:21 +08:00
"tokio-tungstenite",
2023-05-17 18:45:43 +08:00
"tracing",
2023-12-28 18:57:21 +08:00
"tungstenite",
2023-05-17 18:45:43 +08:00
"utils",
]
[[package]]
name = "jmap-client"
2023-12-30 00:33:55 +08:00
version = "0.3.2"
2023-12-28 18:57:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-30 00:33:55 +08:00
checksum = "12c697483ad894a8184d0fd61848e057f86b16642049993b3e6a80c959dbc90a"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
2023-05-17 18:45:43 +08:00
"async-stream",
"base64 0.13.1",
"chrono",
"futures-util",
"maybe-async",
2023-05-17 18:45:43 +08:00
"parking_lot",
"reqwest",
2023-12-30 00:33:55 +08:00
"rustls 0.22.1",
"rustls-pki-types",
2023-05-17 18:45:43 +08:00
"serde",
"serde_json",
"tokio",
2023-12-28 18:57:21 +08:00
"tokio-tungstenite",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "jmap_proto"
version = "0.1.0"
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
2023-05-17 18:45:43 +08:00
"fast-float",
"mail-parser",
"serde",
"serde_json",
"store",
2023-06-10 02:28:01 +08:00
"tokio",
2023-05-17 18:45:43 +08:00
"tracing",
"utils",
]
[[package]]
name = "jobserver"
version = "0.1.27"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
2023-05-17 18:45:43 +08:00
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
2023-12-02 22:52:05 +08:00
version = "0.3.66"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
2023-05-17 18:45:43 +08:00
dependencies = [
"wasm-bindgen",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "keyed_priority_queue"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ee7893dab2e44ae5f9d0173f26ff4aa327c10b01b06a72b52dd9405b628640d"
dependencies = [
"indexmap 2.1.0",
]
2023-08-02 00:39:33 +08:00
[[package]]
name = "konst"
version = "0.3.8"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d712a8c49d4274f8d8a5cf61368cb5f3c143d149882b1a2918129e53395fdb0"
2023-08-02 00:39:33 +08:00
dependencies = [
2023-08-29 01:44:23 +08:00
"const_panic",
"konst_kernel",
"typewit",
2023-08-02 00:39:33 +08:00
]
[[package]]
2023-08-29 01:44:23 +08:00
name = "konst_kernel"
version = "0.3.8"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dac6ea8c376b6e208a81cf39b8e82bebf49652454d98a4829e907dac16ef1790"
2023-08-29 01:44:23 +08:00
dependencies = [
"typewit",
]
2023-08-02 00:39:33 +08:00
2023-09-07 20:28:51 +08:00
[[package]]
name = "lalrpop"
version = "0.20.0"
2023-09-07 20:28:51 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8"
2023-09-07 20:28:51 +08:00
dependencies = [
"ascii-canvas",
"bit-set",
"diff",
"ena",
"is-terminal",
"itertools",
2023-09-07 20:28:51 +08:00
"lalrpop-util",
"petgraph",
"regex",
"regex-syntax 0.7.5",
2023-09-07 20:28:51 +08:00
"string_cache",
"term",
"tiny-keccak",
"unicode-xid",
]
[[package]]
name = "lalrpop-util"
version = "0.20.0"
2023-09-07 20:28:51 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d"
2023-09-07 20:28:51 +08:00
2023-05-17 18:45:43 +08:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
dependencies = [
"spin 0.5.2",
]
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2023-05-31 01:27:54 +08:00
[[package]]
name = "lber"
version = "0.4.2"
2023-05-31 01:27:54 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2df7f9fd9f64cf8f59e1a4a0753fe7d575a5b38d3d7ac5758dcee9357d83ef0a"
2023-05-31 01:27:54 +08:00
dependencies = [
"bytes",
"nom",
]
[[package]]
name = "ldap3"
version = "0.11.3"
2023-05-31 01:27:54 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6dceb52eac140c8679326f619b963577ccf5a4ab025fe5e6db424d2fd3e4f400"
2023-05-31 01:27:54 +08:00
dependencies = [
"async-trait",
"bytes",
"futures",
"futures-util",
"lazy_static",
"lber",
"log",
"nom",
"percent-encoding",
"ring 0.16.20",
"rustls 0.21.10",
2023-05-31 01:27:54 +08:00
"rustls-native-certs",
"thiserror",
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.24.1",
2023-05-31 01:27:54 +08:00
"tokio-stream",
"tokio-util",
"url",
"x509-parser",
2023-05-31 01:27:54 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "libc"
version = "0.2.151"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
2023-05-17 18:45:43 +08:00
[[package]]
name = "libloading"
version = "0.8.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"windows-sys 0.48.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "libm"
version = "0.2.8"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
2023-05-17 18:45:43 +08:00
[[package]]
name = "libredox"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
dependencies = [
"bitflags 2.4.1",
"libc",
"redox_syscall",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "librocksdb-sys"
2023-12-02 22:52:05 +08:00
version = "0.11.0+8.1.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "d3386f101bcb4bd252d8e9d2fb41ec3b0862a15a62b478c355b2982efa469e3e"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-02 22:52:05 +08:00
"bindgen 0.65.1",
2023-05-17 18:45:43 +08:00
"bzip2-sys",
"cc",
"glob",
"libc",
"libz-sys",
"lz4-sys",
"zstd-sys",
]
[[package]]
name = "libsqlite3-sys"
version = "0.27.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716"
2023-05-17 18:45:43 +08:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "libz-sys"
2023-07-28 02:18:34 +08:00
version = "1.1.12"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-28 02:18:34 +08:00
checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"
2023-05-17 18:45:43 +08:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "linked-hash-map"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2023-07-04 00:48:43 +08:00
[[package]]
name = "linux-raw-sys"
2023-12-02 22:52:05 +08:00
version = "0.4.12"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
2023-07-04 00:48:43 +08:00
2023-05-17 18:45:43 +08:00
[[package]]
name = "lock_api"
2023-10-21 01:18:18 +08:00
version = "0.4.11"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 01:18:18 +08:00
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
2023-05-17 18:45:43 +08:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2023-08-19 01:48:57 +08:00
version = "0.4.20"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:48:57 +08:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2023-05-17 18:45:43 +08:00
2023-12-01 14:49:12 +08:00
[[package]]
name = "lru"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2994eeba8ed550fd9b47a0b38f0242bc3344e496483c6180b69139cc2fa5d1d7"
dependencies = [
"hashbrown 0.14.3",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "lru-cache"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
dependencies = [
"linked-hash-map",
]
[[package]]
name = "lz4-sys"
version = "1.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "lz4_flex"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ea9b256699eda7b0387ffbc776dd625e28bde3918446381781245b7a50349d8"
dependencies = [
"twox-hash",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "mail-auth"
2023-12-28 18:57:21 +08:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "224aa436a40caeef3bd3fa1b5b619b28b26d83fcc088c008536886f74ad27951"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
2023-05-17 18:45:43 +08:00
"flate2",
2023-10-21 22:31:10 +08:00
"hickory-resolver",
2023-05-17 18:45:43 +08:00
"lru-cache",
"mail-builder",
"mail-parser",
"parking_lot",
2023-12-28 18:57:21 +08:00
"quick-xml 0.31.0",
"ring 0.17.7",
2023-12-28 18:57:21 +08:00
"rustls-pemfile 2.0.0",
2023-05-17 18:45:43 +08:00
"serde",
"serde_json",
"zip",
]
[[package]]
name = "mail-builder"
2023-08-10 01:47:27 +08:00
version = "0.3.1"
2023-12-28 18:57:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef70f53409852d2612f2249810cbbe0c9931ca25b739b734bafc7f61d88051d4"
2023-05-17 18:45:43 +08:00
dependencies = [
"gethostname",
]
[[package]]
name = "mail-parser"
version = "0.9.2"
2023-12-28 18:57:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7af1b812c3c16317ccadacb0db823f04c2872dfc5a1125f171f4a22d1705e9a7"
2023-05-17 18:45:43 +08:00
dependencies = [
"encoding_rs",
"serde",
]
[[package]]
name = "mail-send"
2023-12-30 16:43:18 +08:00
version = "0.4.6"
2023-12-28 18:57:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-30 16:43:18 +08:00
checksum = "5f5982137dccf24ca038daa022eb0ea97a31e9739477445a787a8ef77e015ebb"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-02 22:52:05 +08:00
"base64 0.21.5",
2023-05-17 18:45:43 +08:00
"gethostname",
"md5",
"rustls 0.22.1",
2023-12-08 17:46:20 +08:00
"rustls-pki-types",
2023-05-17 18:45:43 +08:00
"smtp-proto",
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.25.0",
2023-12-02 22:52:05 +08:00
"webpki-roots 0.26.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "mail-server"
2024-01-14 17:53:41 +08:00
version = "0.5.3"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-05-31 01:27:54 +08:00
"directory",
"imap",
"jemallocator",
2023-05-17 18:45:43 +08:00
"jmap",
"jmap_proto",
"managesieve",
2023-05-17 18:45:43 +08:00
"smtp",
"store",
"tokio",
"tracing",
"utils",
]
[[package]]
name = "managesieve"
2024-01-14 17:53:41 +08:00
version = "0.5.3"
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
"bincode",
"directory",
"imap",
"imap_proto",
"jmap",
"jmap_proto",
"mail-parser",
"mail-send",
"md5",
"parking_lot",
"rustls 0.22.1",
2023-12-04 02:40:16 +08:00
"rustls-pemfile 2.0.0",
"sieve-rs",
"store",
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.25.0",
"tracing",
"utils",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata 0.1.10",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "matchit"
version = "0.7.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
2023-05-17 18:45:43 +08:00
[[package]]
name = "maybe-async"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f1b8c13cb1f814b634a96b2c725449fe7ed464a7b8781de8688be5ffbd3f305"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-06-02 17:03:30 +08:00
[[package]]
name = "md-5"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15"
dependencies = [
"block-buffer 0.9.0",
"digest 0.9.0",
"opaque-debug",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "md-5"
version = "0.10.6"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
[[package]]
name = "memchr"
2023-12-30 00:33:55 +08:00
version = "2.7.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-30 00:33:55 +08:00
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
2023-05-17 18:45:43 +08:00
[[package]]
name = "memoffset"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
"autocfg",
]
2023-09-07 20:28:51 +08:00
[[package]]
name = "memsec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fa0916b001582d253822171bd23f4a0229d32b9507fae236f5da8cad515ba7c"
2023-05-17 18:45:43 +08:00
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2023-08-02 21:48:15 +08:00
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
2023-05-23 21:49:21 +08:00
version = "0.7.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 21:49:21 +08:00
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2023-05-17 18:45:43 +08:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
version = "0.8.10"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
2023-05-17 18:45:43 +08:00
dependencies = [
"libc",
2023-12-01 14:49:12 +08:00
"log",
"wasi",
"windows-sys 0.48.0",
2023-05-17 18:45:43 +08:00
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "mysql-common-derive"
version = "0.30.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56b0d8a0db9bf6d2213e11f2c701cb91387b0614361625ab7b9743b41aa4938f"
dependencies = [
2023-12-04 02:40:16 +08:00
"darling 0.20.3",
2023-12-01 14:49:12 +08:00
"heck",
"num-bigint",
"proc-macro-crate 1.3.1",
"proc-macro-error",
"proc-macro2",
"quote",
"syn 2.0.47",
2023-12-01 14:49:12 +08:00
"termcolor",
"thiserror",
]
[[package]]
name = "mysql_async"
version = "0.33.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6750b17ce50f8f112ef1a8394121090d47c596b56a6a17569ca680a9626e2ef2"
dependencies = [
"bytes",
"crossbeam",
"flate2",
"futures-core",
"futures-sink",
"futures-util",
"keyed_priority_queue",
"lazy_static",
"lru",
"mio",
"mysql_common",
"once_cell",
"pem",
"percent-encoding",
"pin-project",
"rand",
"rustls 0.21.10",
2023-12-02 22:52:05 +08:00
"rustls-pemfile 1.0.4",
2023-12-01 14:49:12 +08:00
"serde",
"serde_json",
"socket2 0.5.5",
"thiserror",
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.24.1",
2023-12-01 14:49:12 +08:00
"tokio-util",
"twox-hash",
"url",
"webpki",
"webpki-roots 0.25.3",
]
[[package]]
name = "mysql_common"
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06f19e4cfa0ab5a76b627cec2d81331c49b034988eaf302c3bafeada684eadef"
dependencies = [
"base64 0.21.5",
"bigdecimal",
2023-12-02 22:52:05 +08:00
"bindgen 0.69.1",
2023-12-01 14:49:12 +08:00
"bitflags 2.4.1",
"bitvec",
"btoi",
"byteorder",
"bytes",
"cc",
"cmake",
"crc32fast",
"flate2",
"frunk",
"lazy_static",
"mysql-common-derive",
"num-bigint",
"num-traits",
"rand",
"regex",
"rust_decimal",
"saturating",
"serde",
"serde_json",
"sha1",
"sha2 0.10.8",
"smallvec",
"subprocess",
"thiserror",
"time",
"uuid",
"zstd 0.12.4",
]
2023-09-07 20:28:51 +08:00
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2023-05-17 18:45:43 +08:00
[[package]]
name = "nix"
2023-08-29 18:31:08 +08:00
version = "0.26.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 18:31:08 +08:00
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-08-29 18:31:08 +08:00
"bitflags 1.3.2",
2023-05-17 18:45:43 +08:00
"cfg-if",
"libc",
2023-12-28 18:57:21 +08:00
"memoffset",
2023-05-17 18:45:43 +08:00
"pin-utils",
]
[[package]]
name = "nlp"
2024-01-14 17:53:41 +08:00
version = "0.5.3"
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
"bincode",
"farmhash",
"jieba-rs",
"lazy_static",
2023-10-12 01:21:11 +08:00
"lru-cache",
"nohash",
2023-10-12 01:21:11 +08:00
"parking_lot",
"phf",
"rust-stemmers",
"serde",
"siphasher 1.0.0",
"tinysegmenter",
2023-10-12 01:21:11 +08:00
"tokio",
"utils",
"whatlang",
"xxhash-rust",
]
[[package]]
name = "nohash"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0f889fb66f7acdf83442c35775764b51fed3c606ab9cee51500dbde2cf528ca"
2023-05-17 18:45:43 +08:00
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
[[package]]
name = "num-bigint"
2023-08-29 01:44:23 +08:00
version = "0.4.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
2023-05-17 18:45:43 +08:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-bigint-dig"
2023-07-03 22:38:49 +08:00
version = "0.8.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 22:38:49 +08:00
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
2023-05-17 18:45:43 +08:00
dependencies = [
"byteorder",
"lazy_static",
"libm",
"num-integer",
"num-iter",
"num-traits",
"rand",
2023-05-17 18:45:43 +08:00
"smallvec",
"zeroize",
]
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.17"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
2023-05-17 18:45:43 +08:00
dependencies = [
"autocfg",
"libm",
]
[[package]]
name = "num_cpus"
2023-07-03 22:38:49 +08:00
version = "1.16.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 22:38:49 +08:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-07-03 22:38:49 +08:00
"hermit-abi",
2023-05-17 18:45:43 +08:00
"libc",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "number_prefix"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2023-07-03 22:38:49 +08:00
[[package]]
name = "object"
2023-12-28 18:57:21 +08:00
version = "0.32.2"
2023-07-03 22:38:49 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2023-07-03 22:38:49 +08:00
dependencies = [
"memchr",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "oid-registry"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff"
dependencies = [
"asn1-rs",
]
[[package]]
name = "once_cell"
2023-12-08 17:46:20 +08:00
version = "1.19.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 17:46:20 +08:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2023-05-17 18:45:43 +08:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "openssl"
2023-12-28 18:57:21 +08:00
version = "0.10.62"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-10-18 02:56:48 +08:00
"bitflags 2.4.1",
2023-05-17 18:45:43 +08:00
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2023-07-09 17:06:37 +08:00
[[package]]
name = "openssl-src"
version = "300.2.1+3.2.0"
2023-07-09 17:06:37 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fe476c29791a5ca0d1273c697e96085bbabbbea2ef7afd5617e78a4b40332d3"
2023-07-09 17:06:37 +08:00
dependencies = [
"cc",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "openssl-sys"
2023-12-28 18:57:21 +08:00
version = "0.9.98"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7"
2023-05-17 18:45:43 +08:00
dependencies = [
"cc",
"libc",
2023-07-09 17:06:37 +08:00
"openssl-src",
2023-05-17 18:45:43 +08:00
"pkg-config",
"vcpkg",
]
[[package]]
name = "opentelemetry"
2023-11-30 19:43:28 +08:00
version = "0.21.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-30 19:43:28 +08:00
checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-11-30 19:43:28 +08:00
"futures-core",
"futures-sink",
"indexmap 2.1.0",
"js-sys",
"once_cell",
"pin-project-lite",
"thiserror",
"urlencoding",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "opentelemetry-http"
2023-11-30 19:43:28 +08:00
version = "0.10.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-30 19:43:28 +08:00
checksum = "7f51189ce8be654f9b5f7e70e49967ed894e84a06fc35c6c042e64ac1fc5399e"
2023-05-17 18:45:43 +08:00
dependencies = [
"async-trait",
"bytes",
"http 0.2.11",
2023-11-30 19:43:28 +08:00
"opentelemetry",
2023-05-17 18:45:43 +08:00
"reqwest",
]
[[package]]
name = "opentelemetry-otlp"
2023-11-30 19:43:28 +08:00
version = "0.14.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-30 19:43:28 +08:00
checksum = "f24cda83b20ed2433c68241f918d0f6fdec8b1d43b7a9590ab4420c5095ca930"
2023-05-17 18:45:43 +08:00
dependencies = [
"async-trait",
"futures-core",
"http 0.2.11",
2023-11-30 19:43:28 +08:00
"opentelemetry",
2023-05-17 18:45:43 +08:00
"opentelemetry-http",
"opentelemetry-proto",
"opentelemetry-semantic-conventions",
"opentelemetry_sdk",
2023-05-17 18:45:43 +08:00
"prost",
"reqwest",
"thiserror",
"tokio",
"tonic",
]
[[package]]
name = "opentelemetry-proto"
2023-11-30 19:43:28 +08:00
version = "0.4.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-30 19:43:28 +08:00
checksum = "a2e155ce5cc812ea3d1dffbd1539aed653de4bf4882d60e6e04dcf0901d674e1"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-11-30 19:43:28 +08:00
"opentelemetry",
"opentelemetry_sdk",
2023-05-17 18:45:43 +08:00
"prost",
"tonic",
]
[[package]]
name = "opentelemetry-semantic-conventions"
2023-11-30 19:43:28 +08:00
version = "0.13.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-30 19:43:28 +08:00
checksum = "f5774f1ef1f982ef2a447f6ee04ec383981a3ab99c8e77a1a7b30182e65bbc84"
2023-05-17 18:45:43 +08:00
dependencies = [
"opentelemetry",
]
[[package]]
name = "opentelemetry_sdk"
2023-11-30 19:43:28 +08:00
version = "0.21.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-30 19:43:28 +08:00
checksum = "968ba3f2ca03e90e5187f5e4f46c791ef7f2c163ae87789c8ce5f5ca3b7b7de5"
2023-05-17 18:45:43 +08:00
dependencies = [
"async-trait",
"crossbeam-channel",
"futures-channel",
"futures-executor",
"futures-util",
2023-11-30 19:43:28 +08:00
"glob",
2023-05-17 18:45:43 +08:00
"once_cell",
2023-11-30 19:43:28 +08:00
"opentelemetry",
"ordered-float",
2023-05-17 18:45:43 +08:00
"percent-encoding",
"rand",
2023-05-17 18:45:43 +08:00
"thiserror",
"tokio",
"tokio-stream",
]
[[package]]
name = "ordered-float"
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e"
dependencies = [
"num-traits",
]
2023-06-07 00:53:29 +08:00
[[package]]
name = "ordered-multimap"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
dependencies = [
"dlv-list",
"hashbrown 0.12.3",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "p256"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
dependencies = [
"ecdsa",
"elliptic-curve",
"primeorder",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-10-21 01:18:18 +08:00
version = "0.9.9"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 01:18:18 +08:00
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
2023-05-17 18:45:43 +08:00
"smallvec",
2023-08-29 01:44:23 +08:00
"windows-targets 0.48.5",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "password-hash"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
dependencies = [
"base64ct",
"rand_core",
2023-05-17 18:45:43 +08:00
"subtle",
]
2023-06-02 17:03:30 +08:00
[[package]]
name = "password-hash"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
dependencies = [
"base64ct",
"rand_core",
2023-06-02 17:03:30 +08:00
"subtle",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "pbkdf2"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
dependencies = [
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
"hmac 0.12.1",
"password-hash 0.4.2",
"sha2 0.10.8",
2023-06-02 17:03:30 +08:00
]
[[package]]
name = "pbkdf2"
2023-07-16 16:34:18 +08:00
version = "0.12.2"
2023-06-02 17:03:30 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-16 16:34:18 +08:00
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2023-06-02 17:03:30 +08:00
dependencies = [
"digest 0.10.7",
"hmac 0.12.1",
"password-hash 0.5.0",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
2023-12-01 14:49:12 +08:00
[[package]]
name = "pem"
2023-12-28 18:57:21 +08:00
version = "3.0.3"
2023-12-01 14:49:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
2023-12-01 14:49:12 +08:00
dependencies = [
"base64 0.21.5",
"serde",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
dependencies = [
"base64ct",
]
[[package]]
name = "percent-encoding"
version = "2.3.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2023-05-17 18:45:43 +08:00
[[package]]
name = "petgraph"
2023-08-29 01:44:23 +08:00
version = "0.6.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
2023-05-17 18:45:43 +08:00
dependencies = [
"fixedbitset",
"indexmap 2.1.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "phf"
version = "0.11.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
2023-05-17 18:45:43 +08:00
dependencies = [
"phf_macros",
2023-09-07 20:28:51 +08:00
"phf_shared 0.11.2",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "phf_codegen"
version = "0.11.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
2023-05-17 18:45:43 +08:00
dependencies = [
"phf_generator",
2023-09-07 20:28:51 +08:00
"phf_shared 0.11.2",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "phf_generator"
version = "0.11.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-09-07 20:28:51 +08:00
"phf_shared 0.11.2",
"rand",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "phf_macros"
version = "0.11.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
2023-05-17 18:45:43 +08:00
dependencies = [
"phf_generator",
2023-09-07 20:28:51 +08:00
"phf_shared 0.11.2",
2023-05-17 18:45:43 +08:00
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
2023-09-07 20:28:51 +08:00
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher 0.3.11",
2023-09-07 20:28:51 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "phf_shared"
version = "0.11.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
2023-05-17 18:45:43 +08:00
dependencies = [
"siphasher 0.3.11",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "pin-project"
2023-08-10 01:47:27 +08:00
version = "1.1.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-10 01:47:27 +08:00
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
2023-05-17 18:45:43 +08:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-08-10 01:47:27 +08:00
version = "1.1.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-10 01:47:27 +08:00
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "pin-project-lite"
2023-08-29 01:44:23 +08:00
version = "0.2.13"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2023-05-17 18:45:43 +08:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkcs1"
version = "0.7.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2023-05-17 18:45:43 +08:00
dependencies = [
"der",
"pkcs8",
"spki",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
"der",
"spki",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "pkg-config"
2023-12-28 18:57:21 +08:00
version = "0.3.28"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
2023-05-17 18:45:43 +08:00
[[package]]
name = "platforms"
2023-12-30 00:33:55 +08:00
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-30 00:33:55 +08:00
checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c"
2023-05-17 18:45:43 +08:00
[[package]]
name = "polyval"
version = "0.6.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"cpufeatures",
"opaque-debug",
"universal-hash",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "portable-atomic"
version = "1.6.0"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
2023-07-04 00:48:43 +08:00
2023-11-30 19:43:28 +08:00
[[package]]
name = "postgres-protocol"
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49b6c5ef183cd3ab4ba005f1ca64c21e8bd97ce4699cfea9e8d9a2c4958ca520"
dependencies = [
"base64 0.21.5",
"byteorder",
"bytes",
"fallible-iterator 0.2.0",
2023-11-30 19:43:28 +08:00
"hmac 0.12.1",
"md-5 0.10.6",
"memchr",
"rand",
"sha2 0.10.8",
"stringprep",
]
[[package]]
name = "postgres-types"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d2234cdee9408b523530a9b6d2d6b373d1db34f6a8e51dc03ded1828d7fb67c"
dependencies = [
"bytes",
"fallible-iterator 0.2.0",
2023-11-30 19:43:28 +08:00
"postgres-protocol",
]
2023-10-15 15:07:19 +08:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2023-05-17 18:45:43 +08:00
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2023-09-07 20:28:51 +08:00
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2023-05-17 18:45:43 +08:00
[[package]]
name = "prettyplease"
version = "0.2.16"
2023-06-08 20:53:29 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5"
2023-06-08 20:53:29 +08:00
dependencies = [
"proc-macro2",
"syn 2.0.47",
2023-06-08 20:53:29 +08:00
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "prettytable-rs"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
dependencies = [
"csv",
"encode_unicode 1.0.0",
"is-terminal",
"lazy_static",
"term",
"unicode-width",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "primeorder"
version = "0.13.6"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
2023-05-17 18:45:43 +08:00
dependencies = [
"elliptic-curve",
]
[[package]]
name = "privdrop"
version = "0.5.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bc12de3935536ed9b69488faea4450a298dac44179b54f71806e63f55034bf9"
2023-05-17 18:45:43 +08:00
dependencies = [
"libc",
"nix",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "proc-macro-crate"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
dependencies = [
"once_cell",
"toml_edit 0.19.15",
]
[[package]]
name = "proc-macro-crate"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8"
dependencies = [
"toml_edit 0.20.7",
]
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn 1.0.109",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "proc-macro2"
version = "1.0.75"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708"
2023-05-17 18:45:43 +08:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "prost"
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-derive"
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
dependencies = [
"anyhow",
"itertools",
2023-05-17 18:45:43 +08:00
"proc-macro2",
"quote",
"syn 1.0.109",
]
2024-01-07 03:02:31 +08:00
[[package]]
name = "proxy-header"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e220ac9305411757d06712209b7c2d1d35c3a1a577301e87855f6219585ecb"
dependencies = [
"pin-project-lite",
"tokio",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "ptr_meta"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
dependencies = [
"ptr_meta_derive",
]
[[package]]
name = "ptr_meta_derive"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-06-02 17:03:30 +08:00
[[package]]
name = "pwhash"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "419a3ad8fa9f9d445e69d9b185a24878ae6e6f55c96e4512f4a0e28cd3bc5c56"
dependencies = [
"blowfish 0.7.0",
2023-06-02 17:03:30 +08:00
"byteorder",
"hmac 0.10.1",
"md-5 0.9.1",
"rand",
"sha-1",
2023-06-02 17:03:30 +08:00
"sha2 0.9.9",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2023-06-07 00:53:29 +08:00
[[package]]
name = "quick-xml"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
dependencies = [
"memchr",
"serde",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "quick-xml"
2023-12-28 18:57:21 +08:00
version = "0.31.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
2023-05-17 18:45:43 +08:00
dependencies = [
"memchr",
]
[[package]]
name = "quote"
version = "1.0.35"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "r2d2"
version = "0.8.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
dependencies = [
"log",
"parking_lot",
"scheduled-thread-pool",
]
2023-08-02 00:39:33 +08:00
[[package]]
name = "radium"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2023-05-17 18:45:43 +08:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
2023-05-17 18:45:43 +08:00
]
2023-08-02 00:39:33 +08:00
[[package]]
name = "rasn"
version = "0.10.6"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76def3a472085e40dae01e4eeb106f2ed70f8c7dabe041faed1668a00ee143ef"
2023-08-02 00:39:33 +08:00
dependencies = [
"arrayvec",
"bitvec",
"bitvec-nom2",
"bytes",
"chrono",
"either",
"konst",
"nom",
"num-bigint",
"num-integer",
"num-traits",
"once_cell",
"rasn-derive",
"snafu",
]
[[package]]
name = "rasn-cms"
version = "0.10.6"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09d45b1b6c0bfb41d1023246a3853a82d158d7e6690698ad4acac009f2f09380"
2023-08-02 00:39:33 +08:00
dependencies = [
"rasn",
"rasn-pkix",
]
[[package]]
name = "rasn-derive"
version = "0.10.6"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48d1fd02e16232e942b5e7ce305b447c550d09a9146255a3e8a2cf62a0e2ac2d"
2023-08-02 00:39:33 +08:00
dependencies = [
"either",
"itertools",
2023-08-02 00:39:33 +08:00
"proc-macro2",
"quote",
"rayon",
"syn 1.0.109",
"uuid",
]
[[package]]
name = "rasn-pkix"
version = "0.10.6"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c825c4183e8f4db9bd772206d7d0fa10f3df35b6ed5bcb8f6cb50fd1166f8e9"
2023-08-02 00:39:33 +08:00
dependencies = [
"rasn",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "rayon"
version = "1.8.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
2023-05-17 18:45:43 +08:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.12.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
2023-05-17 18:45:43 +08:00
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]
[[package]]
name = "rcgen"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d918c80c5a4c7560db726763020bd16db179e4d5b828078842274a443addb5d"
dependencies = [
"pem",
"ring 0.17.7",
"time",
"yasna",
]
2023-12-13 01:45:52 +08:00
[[package]]
name = "redis"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c580d9cbbe1d1b479e8d67cf9daf6a62c957e6846048408b80b43ac3f6af84cd"
dependencies = [
"async-trait",
"bytes",
"combine",
"crc16",
"futures",
"futures-util",
"itoa",
"log",
"percent-encoding",
"pin-project-lite",
"rand",
"rustls 0.21.10",
"rustls-native-certs",
"rustls-pemfile 1.0.4",
"rustls-webpki 0.101.7",
"ryu",
"sha1_smol",
"socket2 0.4.10",
"tokio",
"tokio-rustls 0.24.1",
"tokio-util",
"url",
"webpki-roots 0.23.1",
]
2023-10-21 01:18:18 +08:00
[[package]]
name = "redox_syscall"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
"bitflags 1.3.2",
]
2023-06-07 00:53:29 +08:00
[[package]]
name = "redox_users"
version = "0.4.4"
2023-06-07 00:53:29 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
2023-06-07 00:53:29 +08:00
dependencies = [
"getrandom",
"libredox",
2023-06-07 00:53:29 +08:00
"thiserror",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "regex"
2023-10-18 02:56:48 +08:00
version = "1.10.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-18 02:56:48 +08:00
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
2023-05-17 18:45:43 +08:00
dependencies = [
"aho-corasick",
"memchr",
2023-10-18 02:56:48 +08:00
"regex-automata 0.4.3",
2023-10-15 15:07:19 +08:00
"regex-syntax 0.8.2",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2023-05-23 21:49:21 +08:00
"regex-syntax 0.6.29",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "regex-automata"
2023-10-18 02:56:48 +08:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-18 02:56:48 +08:00
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
dependencies = [
"aho-corasick",
"memchr",
2023-10-15 15:07:19 +08:00
"regex-syntax 0.8.2",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "regex-syntax"
version = "0.6.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
[[package]]
name = "regex-syntax"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
2023-05-23 21:49:21 +08:00
[[package]]
name = "regex-syntax"
2023-10-15 15:07:19 +08:00
version = "0.8.2"
2023-05-23 21:49:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-15 15:07:19 +08:00
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
2023-05-23 21:49:21 +08:00
2023-12-01 14:49:12 +08:00
[[package]]
name = "rend"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd"
dependencies = [
"bytecheck",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "reqwest"
2023-12-28 18:57:21 +08:00
version = "0.11.23"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-04 02:40:16 +08:00
"async-compression",
"base64 0.21.5",
2023-05-17 18:45:43 +08:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2 0.3.22",
"http 0.2.11",
"http-body 0.4.6",
2023-12-28 18:57:21 +08:00
"hyper 0.14.28",
2023-05-17 18:45:43 +08:00
"hyper-rustls",
"ipnet",
"js-sys",
"log",
"mime",
2023-08-02 21:48:15 +08:00
"mime_guess",
2023-05-17 18:45:43 +08:00
"once_cell",
"percent-encoding",
"pin-project-lite",
"rustls 0.21.10",
2023-12-02 22:52:05 +08:00
"rustls-pemfile 1.0.4",
2023-05-17 18:45:43 +08:00
"serde",
"serde_json",
"serde_urlencoded",
"system-configuration",
2023-05-17 18:45:43 +08:00
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.24.1",
2023-05-17 18:45:43 +08:00
"tokio-util",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"wasm-streams",
"web-sys",
"webpki-roots 0.25.3",
2023-08-29 01:44:23 +08:00
"winreg",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "resolv-conf"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
dependencies = [
"hostname",
"quick-error",
]
[[package]]
name = "retain_mut"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c31b5c4033f8fdde8700e4657be2c497e7288f01515be52168c631e2e4d4086"
[[package]]
name = "rfc6979"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
dependencies = [
2023-06-02 17:03:30 +08:00
"hmac 0.12.1",
2023-05-17 18:45:43 +08:00
"subtle",
]
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin 0.5.2",
"untrusted 0.7.1",
2023-05-17 18:45:43 +08:00
"web-sys",
"winapi",
]
[[package]]
name = "ring"
version = "0.17.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
dependencies = [
"cc",
"getrandom",
"libc",
"spin 0.9.8",
"untrusted 0.9.0",
"windows-sys 0.48.0",
]
[[package]]
name = "ripemd"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
dependencies = [
"digest 0.10.7",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "rkyv"
2023-12-28 18:57:21 +08:00
version = "0.7.43"
2023-12-01 14:49:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "527a97cdfef66f65998b5f3b637c26f5a5ec09cc52a3f9932313ac645f4190f5"
2023-12-01 14:49:12 +08:00
dependencies = [
"bitvec",
"bytecheck",
2023-12-28 18:57:21 +08:00
"bytes",
2023-12-01 14:49:12 +08:00
"hashbrown 0.12.3",
"ptr_meta",
"rend",
"rkyv_derive",
"seahash",
"tinyvec",
"uuid",
]
[[package]]
name = "rkyv_derive"
2023-12-28 18:57:21 +08:00
version = "0.7.43"
2023-12-01 14:49:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "b5c462a1328c8e67e4d6dbad1eb0355dd43e8ab432c6e227a43657f16ade5033"
2023-12-01 14:49:12 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "roaring"
2023-07-28 02:18:34 +08:00
version = "0.10.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-28 02:18:34 +08:00
checksum = "6106b5cf8587f5834158895e9715a3c6c9716c8aefab57f1f7680917191c7873"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytemuck",
"byteorder",
"retain_mut",
]
[[package]]
name = "rocksdb"
2023-12-02 22:52:05 +08:00
version = "0.21.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe"
2023-05-17 18:45:43 +08:00
dependencies = [
"libc",
"librocksdb-sys",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "rpassword"
version = "7.3.1"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80472be3c897911d0137b2d2b9055faf6eeac5b14e324073d83bc17b191d7e3f"
2023-07-04 00:48:43 +08:00
dependencies = [
"libc",
"rtoolbox",
"windows-sys 0.48.0",
2023-07-04 00:48:43 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "rsa"
2023-12-04 02:40:16 +08:00
version = "0.9.6"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-04 02:40:16 +08:00
checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
2023-05-17 18:45:43 +08:00
dependencies = [
"const-oid",
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
2023-05-17 18:45:43 +08:00
"num-bigint-dig",
"num-integer",
"num-traits",
"pkcs1",
"pkcs8",
"rand_core",
"signature",
"spki",
2023-05-17 18:45:43 +08:00
"subtle",
"zeroize",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "rtoolbox"
version = "0.0.2"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c247d24e63230cdb56463ae328478bd5eac8b8faa8c69461a77e8e323afac90e"
2023-07-04 00:48:43 +08:00
dependencies = [
"libc",
"windows-sys 0.48.0",
2023-07-04 00:48:43 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "rusqlite"
version = "0.30.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-10-18 02:56:48 +08:00
"bitflags 2.4.1",
"fallible-iterator 0.3.0",
2023-05-17 18:45:43 +08:00
"fallible-streaming-iterator",
"hashlink",
"libsqlite3-sys",
"smallvec",
]
2023-06-07 00:53:29 +08:00
[[package]]
name = "rust-ini"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
dependencies = [
"cfg-if",
"ordered-multimap",
]
[[package]]
name = "rust-s3"
version = "0.33.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b2ac5ff6acfbe74226fa701b5ef793aaa054055c13ebb7060ad36942956e027"
dependencies = [
"async-trait",
"aws-creds",
"aws-region",
"base64 0.13.1",
"bytes",
"cfg-if",
"futures",
"hex",
"hmac 0.12.1",
"http 0.2.11",
2023-06-07 00:53:29 +08:00
"log",
"maybe-async",
2023-06-07 00:53:29 +08:00
"md5",
"percent-encoding",
"quick-xml 0.26.0",
"reqwest",
"serde",
"serde_derive",
"sha2 0.10.8",
2023-06-07 00:53:29 +08:00
"thiserror",
"time",
2023-06-07 00:53:29 +08:00
"tokio",
"tokio-stream",
"url",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "rust-stemmers"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
dependencies = [
"serde",
"serde_derive",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "rust_decimal"
version = "1.33.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06676aec5ccb8fc1da723cc8c0f9a46549f21ebb8753d3915c6c41db1e7f1dc4"
dependencies = [
"arrayvec",
"borsh",
"bytes",
"num-traits",
"rand",
"rkyv",
"serde",
"serde_json",
]
2023-07-03 22:38:49 +08:00
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2023-05-17 18:45:43 +08:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2023-12-04 02:40:16 +08:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
"semver 0.9.0",
]
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver 1.0.21",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "rusticata-macros"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
dependencies = [
"nom",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "rustix"
version = "0.38.28"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
2023-07-04 00:48:43 +08:00
dependencies = [
2023-10-18 02:56:48 +08:00
"bitflags 2.4.1",
2023-07-04 00:48:43 +08:00
"errno",
"libc",
2023-07-22 02:21:51 +08:00
"linux-raw-sys",
2023-12-02 22:52:05 +08:00
"windows-sys 0.52.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "rustls"
2023-08-29 18:31:08 +08:00
version = "0.20.9"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 18:31:08 +08:00
checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99"
2023-05-17 18:45:43 +08:00
dependencies = [
"log",
"ring 0.16.20",
2023-05-17 18:45:43 +08:00
"sct",
"webpki",
]
[[package]]
name = "rustls"
version = "0.21.10"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
2023-05-17 18:45:43 +08:00
dependencies = [
"log",
"ring 0.17.7",
2023-12-08 17:46:20 +08:00
"rustls-webpki 0.101.7",
2023-05-17 18:45:43 +08:00
"sct",
]
2023-12-08 17:46:20 +08:00
[[package]]
name = "rustls"
version = "0.22.1"
2023-12-08 17:46:20 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe6b63262c9fcac8659abfaa96cac103d28166d3ff3eaf8f412e19f3ae9e5a48"
2023-12-08 17:46:20 +08:00
dependencies = [
"log",
"ring 0.17.7",
"rustls-pki-types",
"rustls-webpki 0.102.1",
2023-12-08 17:46:20 +08:00
"subtle",
"zeroize",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "rustls-native-certs"
version = "0.6.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
2023-05-17 18:45:43 +08:00
dependencies = [
"openssl-probe",
2023-12-02 22:52:05 +08:00
"rustls-pemfile 1.0.4",
2023-05-17 18:45:43 +08:00
"schannel",
"security-framework",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2023-05-17 18:45:43 +08:00
dependencies = [
"base64 0.21.5",
2023-05-17 18:45:43 +08:00
]
2023-12-02 22:52:05 +08:00
[[package]]
name = "rustls-pemfile"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35e4980fa29e4c4b212ffb3db068a564cbf560e51d3944b7c88bd8bf5bec64f4"
dependencies = [
"base64 0.21.5",
"rustls-pki-types",
]
[[package]]
name = "rustls-pki-types"
2023-12-28 18:57:21 +08:00
version = "1.1.0"
2023-12-02 22:52:05 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "9e9d979b3ce68192e42760c7810125eb6cf2ea10efae545a156063e61f314e2a"
2023-12-02 22:52:05 +08:00
2023-12-13 01:45:52 +08:00
[[package]]
name = "rustls-webpki"
version = "0.100.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f6a5fc258f1c1276dfe3016516945546e2d5383911efc0fc4f1cdc5df3a4ae3"
dependencies = [
"ring 0.16.20",
"untrusted 0.7.1",
]
[[package]]
name = "rustls-webpki"
version = "0.101.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
dependencies = [
"ring 0.17.7",
"untrusted 0.9.0",
]
2023-12-08 17:46:20 +08:00
[[package]]
name = "rustls-webpki"
version = "0.102.1"
2023-12-08 17:46:20 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef4ca26037c909dedb327b48c3327d0ba91d3dd3c4e05dad328f210ffb68e95b"
2023-12-08 17:46:20 +08:00
dependencies = [
"ring 0.17.7",
"rustls-pki-types",
"untrusted 0.9.0",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "rustversion"
2023-07-16 16:34:18 +08:00
version = "1.0.14"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-16 16:34:18 +08:00
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2023-05-17 18:45:43 +08:00
[[package]]
name = "ryu"
version = "1.0.16"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
2023-05-17 18:45:43 +08:00
2023-06-02 17:03:30 +08:00
[[package]]
name = "salsa20"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
dependencies = [
"cipher 0.4.4",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "saturating"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ece8e78b2f38ec51c51f5d475df0a7187ba5111b2a28bdc761ee05b075d40a71"
2023-05-17 18:45:43 +08:00
[[package]]
name = "schannel"
2023-12-28 18:57:21 +08:00
version = "0.1.23"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-28 18:57:21 +08:00
"windows-sys 0.52.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "scheduled-thread-pool"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
dependencies = [
"parking_lot",
]
[[package]]
name = "scopeguard"
2023-07-22 02:21:51 +08:00
version = "1.2.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-22 02:21:51 +08:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2023-05-17 18:45:43 +08:00
2023-06-02 17:03:30 +08:00
[[package]]
name = "scrypt"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
dependencies = [
"password-hash 0.5.0",
2023-07-16 16:34:18 +08:00
"pbkdf2 0.12.2",
2023-06-02 17:03:30 +08:00
"salsa20",
"sha2 0.10.8",
2023-06-02 17:03:30 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "sct"
version = "0.7.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2023-05-17 18:45:43 +08:00
dependencies = [
"ring 0.17.7",
"untrusted 0.9.0",
2023-05-17 18:45:43 +08:00
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "seahash"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2023-05-17 18:45:43 +08:00
[[package]]
name = "sec1"
2023-07-22 02:21:51 +08:00
version = "0.7.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-22 02:21:51 +08:00
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
2023-05-17 18:45:43 +08:00
dependencies = [
"base16ct",
"der",
2023-05-17 18:45:43 +08:00
"generic-array",
"pkcs8",
2023-05-17 18:45:43 +08:00
"subtle",
"zeroize",
]
[[package]]
name = "security-framework"
2023-07-28 02:18:34 +08:00
version = "2.9.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-28 02:18:34 +08:00
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
2023-05-17 18:45:43 +08:00
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2023-07-28 02:18:34 +08:00
version = "2.9.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-28 02:18:34 +08:00
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
2023-05-17 18:45:43 +08:00
dependencies = [
"core-foundation-sys",
"libc",
]
2023-12-04 02:40:16 +08:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
"semver-parser",
]
[[package]]
name = "semver"
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
2023-12-04 02:40:16 +08:00
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2023-08-02 00:39:33 +08:00
[[package]]
2023-09-07 20:28:51 +08:00
name = "sequoia-openpgp"
version = "1.17.0"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ea026cf8a70d331c742e3ad7e68fd405d0743ff86630fb4334a1bf8d0e194c7"
2023-09-07 20:28:51 +08:00
dependencies = [
"aes",
"aes-gcm",
2023-09-07 20:28:51 +08:00
"anyhow",
"base64 0.21.5",
"block-padding",
"blowfish 0.9.1",
2023-09-07 20:28:51 +08:00
"buffered-reader",
"camellia",
"cast5",
"cfb-mode",
2023-09-07 20:28:51 +08:00
"chrono",
"cipher 0.4.4",
"des",
"digest 0.10.7",
"dsa",
2023-09-07 20:28:51 +08:00
"dyn-clone",
"eax",
"ecb",
"ecdsa",
"ed25519",
"ed25519-dalek",
"getrandom",
"idea",
"idna 0.4.0",
2023-09-07 20:28:51 +08:00
"lalrpop",
"lalrpop-util",
"lazy_static",
"libc",
"md-5 0.10.6",
2023-09-07 20:28:51 +08:00
"memsec",
"num-bigint-dig",
2023-09-07 20:28:51 +08:00
"once_cell",
"p256",
"rand",
"rand_core",
2023-09-07 20:28:51 +08:00
"regex",
"regex-syntax 0.8.2",
"ripemd",
"rsa",
2023-09-07 20:28:51 +08:00
"sha1collisiondetection",
"sha2 0.10.8",
2023-09-07 20:28:51 +08:00
"thiserror",
"twofish",
"typenum",
"x25519-dalek",
2023-09-07 20:28:51 +08:00
"xxhash-rust",
]
2023-08-02 00:39:33 +08:00
2023-05-17 18:45:43 +08:00
[[package]]
name = "serde"
version = "1.0.194"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b114498256798c94a0689e1a15fec6005dee8ac1f41de56404b67afc2a4b773"
2023-05-17 18:45:43 +08:00
dependencies = [
"serde_derive",
]
2023-06-08 20:53:29 +08:00
[[package]]
name = "serde_bytes"
version = "0.11.14"
2023-06-08 20:53:29 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734"
2023-06-08 20:53:29 +08:00
dependencies = [
"serde",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "serde_derive"
version = "1.0.194"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3385e45322e8f9931410f01b3031ec534c3947d0e94c18049af4d9f9907d4e0"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "serde_json"
version = "1.0.110"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fbd975230bada99c8bb618e0c365c2eefa219158d5c6c29610fd09ff1833257"
2023-05-17 18:45:43 +08:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2023-12-04 02:40:16 +08:00
[[package]]
name = "serde_with"
version = "1.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff"
dependencies = [
"serde",
"serde_with_macros",
]
[[package]]
name = "serde_with_macros"
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082"
dependencies = [
"darling 0.13.4",
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "serial_test"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e56dd856803e253c8f298af3f4d7eb0ae5e23a737252cd90bb4f3b435033b2d"
dependencies = [
"dashmap",
"futures",
"lazy_static",
"log",
"parking_lot",
"serial_test_derive",
]
[[package]]
name = "serial_test_derive"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
2023-06-02 17:03:30 +08:00
[[package]]
name = "sha-1"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
dependencies = [
"block-buffer 0.9.0",
"cfg-if",
"cpufeatures",
"digest 0.9.0",
"opaque-debug",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "sha1"
version = "0.10.6"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"cpufeatures",
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
]
2023-12-13 01:45:52 +08:00
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2023-09-07 20:28:51 +08:00
[[package]]
name = "sha1collisiondetection"
version = "0.3.2"
2023-09-07 20:28:51 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31c0b86a052106b16741199985c9ec2bf501f619f70c48fa479b44b093ad9a68"
2023-09-07 20:28:51 +08:00
dependencies = [
"const-oid",
"digest 0.10.7",
2023-09-07 20:28:51 +08:00
"generic-array",
]
2023-06-02 17:03:30 +08:00
[[package]]
name = "sha2"
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
dependencies = [
"block-buffer 0.9.0",
"cfg-if",
"cpufeatures",
"digest 0.9.0",
"opaque-debug",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "sha2"
version = "0.10.8"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"cpufeatures",
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "sharded-slab"
version = "0.1.7"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2023-05-17 18:45:43 +08:00
dependencies = [
"lazy_static",
]
2023-07-09 17:06:37 +08:00
[[package]]
name = "shell-words"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
2023-05-17 18:45:43 +08:00
[[package]]
name = "shlex"
version = "1.2.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
2023-05-17 18:45:43 +08:00
[[package]]
name = "sieve-rs"
2023-12-28 18:57:21 +08:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25494c13da6c336430906aa783e4bb2ae251c84158d6e5a4fdf0449a779c2521"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
2023-05-17 18:45:43 +08:00
"bincode",
2023-08-29 01:44:23 +08:00
"fancy-regex",
2023-05-17 18:45:43 +08:00
"mail-builder",
"mail-parser",
"phf",
"serde",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
[[package]]
name = "signature"
version = "2.2.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
"rand_core",
2023-05-17 18:45:43 +08:00
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "simdutf8"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
2023-05-17 18:45:43 +08:00
[[package]]
name = "siphasher"
2023-08-29 01:44:23 +08:00
version = "0.3.11"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2023-05-17 18:45:43 +08:00
[[package]]
name = "siphasher"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe"
2023-05-17 18:45:43 +08:00
[[package]]
name = "slab"
2023-08-29 01:44:23 +08:00
version = "0.4.9"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2023-05-17 18:45:43 +08:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
version = "1.11.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
2023-05-17 18:45:43 +08:00
[[package]]
name = "smtp"
2024-01-14 17:53:41 +08:00
version = "0.5.3"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
"bincode",
2023-05-17 18:45:43 +08:00
"blake3",
"dashmap",
"decancer",
2023-06-02 17:03:30 +08:00
"directory",
2023-05-17 18:45:43 +08:00
"form_urlencoded",
"http-body-util",
2023-12-28 18:57:21 +08:00
"hyper 1.1.0",
2023-07-16 16:34:18 +08:00
"hyper-util",
"idna 0.5.0",
"imagesize",
"infer",
"lazy_static",
2023-05-17 18:45:43 +08:00
"lru-cache",
"mail-auth",
"mail-builder",
"mail-parser",
"mail-send",
"md5",
2023-10-12 01:21:11 +08:00
"nlp",
2023-05-17 18:45:43 +08:00
"num_cpus",
"parking_lot",
"rand",
2023-05-17 18:45:43 +08:00
"rayon",
"regex",
"reqwest",
"rustls 0.22.1",
2023-12-04 02:40:16 +08:00
"rustls-pemfile 2.0.0",
2023-12-08 17:46:20 +08:00
"rustls-pki-types",
2023-05-17 18:45:43 +08:00
"serde",
"serde_json",
"sha1",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
"sieve-rs",
"smtp-proto",
"store",
2023-05-17 18:45:43 +08:00
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.25.0",
2023-05-17 18:45:43 +08:00
"tracing",
"unicode-security",
2023-05-17 18:45:43 +08:00
"utils",
2023-12-04 02:40:16 +08:00
"webpki-roots 0.26.0",
2023-09-01 20:41:58 +08:00
"whatlang",
"x509-parser",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "smtp-proto"
version = "0.1.3"
2023-12-28 18:57:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20b37ae016fedcac2174dd0e3029870154830a4d3fb10f533317f2604e72b343"
2023-05-17 18:45:43 +08:00
2023-08-02 00:39:33 +08:00
[[package]]
name = "snafu"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6"
dependencies = [
"backtrace",
"doc-comment",
"snafu-derive",
]
[[package]]
name = "snafu-derive"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "socket2"
2023-10-21 22:31:10 +08:00
version = "0.4.10"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 22:31:10 +08:00
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
2023-05-17 18:45:43 +08:00
dependencies = [
"libc",
"winapi",
]
2023-06-08 20:53:29 +08:00
[[package]]
name = "socket2"
2023-10-21 22:31:10 +08:00
version = "0.5.5"
2023-06-08 20:53:29 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 22:31:10 +08:00
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
2023-06-08 20:53:29 +08:00
dependencies = [
"libc",
"windows-sys 0.48.0",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
[[package]]
name = "spki"
2023-12-02 22:52:05 +08:00
version = "0.7.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2023-05-17 18:45:43 +08:00
dependencies = [
"base64ct",
"der",
2023-05-17 18:45:43 +08:00
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "stalwart-cli"
2024-01-14 17:53:41 +08:00
version = "0.5.3"
2023-07-04 00:48:43 +08:00
dependencies = [
"clap",
"console",
"csv",
"form_urlencoded",
"futures",
"human-size",
"indicatif",
"jmap-client",
"mail-parser",
"num_cpus",
"prettytable-rs",
"pwhash",
"rand",
2023-07-04 00:48:43 +08:00
"reqwest",
"rpassword",
"serde",
"serde_json",
"tokio",
]
2023-07-09 17:06:37 +08:00
[[package]]
name = "stalwart-install"
2024-01-14 17:53:41 +08:00
version = "0.5.3"
2023-07-09 17:06:37 +08:00
dependencies = [
"base64 0.21.5",
2023-07-11 23:16:08 +08:00
"clap",
2023-07-09 17:06:37 +08:00
"dialoguer",
2023-07-11 23:16:08 +08:00
"flate2",
2023-07-09 17:06:37 +08:00
"indicatif",
"libc",
"openssl",
"pwhash",
"rand",
"rcgen",
2023-07-09 17:06:37 +08:00
"reqwest",
"rpassword",
2023-07-11 23:16:08 +08:00
"tar",
"zip-extract",
2023-07-09 17:06:37 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "store"
version = "0.1.0"
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
"async-trait",
2023-05-17 18:45:43 +08:00
"blake3",
"bytes",
2023-12-13 01:45:52 +08:00
"deadpool",
2023-11-30 19:43:28 +08:00
"deadpool-postgres",
2023-12-04 02:40:16 +08:00
"elasticsearch",
2023-05-17 18:45:43 +08:00
"farmhash",
"flate2",
2023-05-17 18:45:43 +08:00
"foundationdb",
"futures",
"lazy_static",
"lru-cache",
"lz4_flex",
2023-12-01 14:49:12 +08:00
"mysql_async",
"nlp",
"num_cpus",
2023-05-17 18:45:43 +08:00
"parking_lot",
"r2d2",
"rand",
2023-05-17 18:45:43 +08:00
"rayon",
2023-12-13 01:45:52 +08:00
"redis",
"regex",
"reqwest",
"ring 0.17.7",
2023-05-17 18:45:43 +08:00
"roaring",
"rocksdb",
"rusqlite",
2023-06-07 00:53:29 +08:00
"rust-s3",
"rustls 0.22.1",
2023-12-08 17:46:20 +08:00
"rustls-pki-types",
2023-05-17 18:45:43 +08:00
"serde",
2023-12-04 02:40:16 +08:00
"serde_json",
2023-05-17 18:45:43 +08:00
"tokio",
2023-11-30 19:43:28 +08:00
"tokio-postgres",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.25.0",
2023-05-17 18:45:43 +08:00
"tracing",
"utils",
"xxhash-rust",
]
2023-09-07 20:28:51 +08:00
[[package]]
name = "string_cache"
version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
dependencies = [
"new_debug_unreachable",
"once_cell",
"parking_lot",
"phf_shared 0.10.0",
"precomputed-hash",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "stringprep"
version = "0.1.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6"
2023-05-17 18:45:43 +08:00
dependencies = [
"finl_unicode",
2023-05-17 18:45:43 +08:00
"unicode-bidi",
"unicode-normalization",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2023-12-01 14:49:12 +08:00
[[package]]
name = "subprocess"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c2e86926081dda636c546d8c5e641661049d7562a68f5488be4a1f7f66f6086"
dependencies = [
"libc",
"winapi",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "subtle"
2023-12-08 17:46:20 +08:00
version = "2.5.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 17:46:20 +08:00
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2023-05-17 18:45:43 +08:00
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.47"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1726efe18f42ae774cc644f330953a5e7b3c3003d3edcecf18850fe9d4dd9afb"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "syn_derive"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b"
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"syn 2.0.47",
2023-12-01 14:49:12 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
[[package]]
name = "synstructure"
version = "0.12.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
"unicode-xid",
]
[[package]]
name = "system-configuration"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
dependencies = [
"core-foundation-sys",
"libc",
]
2023-08-02 00:39:33 +08:00
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2023-07-11 23:16:08 +08:00
[[package]]
name = "tar"
2023-08-10 01:47:27 +08:00
version = "0.4.40"
2023-07-11 23:16:08 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-10 01:47:27 +08:00
checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
2023-07-11 23:16:08 +08:00
dependencies = [
"filetime",
"libc",
"xattr",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "tempfile"
2023-12-28 18:57:21 +08:00
version = "3.9.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"fastrand",
"redox_syscall",
2023-07-22 02:21:51 +08:00
"rustix",
2023-12-28 18:57:21 +08:00
"windows-sys 0.52.0",
2023-05-17 18:45:43 +08:00
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "term"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
dependencies = [
"dirs-next",
"rustversion",
"winapi",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "termcolor"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449"
dependencies = [
"winapi-util",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "tests"
version = "0.1.0"
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
2023-05-17 18:45:43 +08:00
"async-trait",
"base64 0.21.5",
2023-05-17 18:45:43 +08:00
"bytes",
2023-05-21 02:50:24 +08:00
"chrono",
2023-05-17 18:45:43 +08:00
"csv",
"dashmap",
2023-06-02 17:03:30 +08:00
"directory",
2023-05-17 18:45:43 +08:00
"ece",
"flate2",
"futures",
"http-body-util",
2023-12-28 18:57:21 +08:00
"hyper 1.1.0",
2023-07-16 16:34:18 +08:00
"hyper-util",
2023-06-26 02:00:45 +08:00
"imap",
"imap_proto",
"jemallocator",
"jmap",
2023-05-17 18:45:43 +08:00
"jmap-client",
"jmap_proto",
"mail-auth",
"mail-parser",
"mail-send",
"managesieve",
"nlp",
2023-05-17 18:45:43 +08:00
"num_cpus",
"rayon",
"reqwest",
"rustls 0.22.1",
2023-12-02 22:52:05 +08:00
"rustls-pemfile 2.0.0",
2023-12-08 17:46:20 +08:00
"rustls-pki-types",
2023-05-17 18:45:43 +08:00
"serde",
"serde_json",
"serial_test",
"sieve-rs",
"smtp",
"smtp-proto",
"store",
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.25.0",
2023-05-17 18:45:43 +08:00
"tracing",
"tracing-subscriber",
"utils",
]
[[package]]
name = "thiserror"
version = "1.0.56"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
2023-05-17 18:45:43 +08:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.56"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "thread_local"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
"cfg-if",
"once_cell",
]
[[package]]
name = "time"
2023-12-28 18:57:21 +08:00
version = "0.3.31"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-08-10 01:47:27 +08:00
"deranged",
2023-05-17 18:45:43 +08:00
"itoa",
2023-10-15 15:07:19 +08:00
"powerfmt",
2023-05-17 18:45:43 +08:00
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2023-05-17 18:45:43 +08:00
[[package]]
name = "time-macros"
2023-12-28 18:57:21 +08:00
version = "0.2.16"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f"
2023-05-17 18:45:43 +08:00
dependencies = [
"time-core",
]
2023-09-07 20:28:51 +08:00
[[package]]
name = "tiny-keccak"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
dependencies = [
"crunchy",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "tinysegmenter"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1755695d17d470baf2d937a59ab4e86de3034b056fc8700e21411b0efca36497"
dependencies = [
"lazy_static",
"maplit",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2023-12-28 18:57:21 +08:00
version = "1.35.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-07-03 22:38:49 +08:00
"backtrace",
2023-05-17 18:45:43 +08:00
"bytes",
"libc",
"mio",
"num_cpus",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
2023-10-21 22:31:10 +08:00
"socket2 0.5.5",
2023-05-17 18:45:43 +08:00
"tokio-macros",
2023-05-23 21:49:21 +08:00
"windows-sys 0.48.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "tokio-io-timeout"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
dependencies = [
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-macros"
version = "2.2.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
2023-11-30 19:43:28 +08:00
[[package]]
name = "tokio-postgres"
version = "0.7.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d340244b32d920260ae7448cb72b6e238bddc3d4f7603394e7dd46ed8e48f5b8"
dependencies = [
"async-trait",
"byteorder",
"bytes",
"fallible-iterator 0.2.0",
2023-11-30 19:43:28 +08:00
"futures-channel",
"futures-util",
"log",
"parking_lot",
"percent-encoding",
"phf",
"pin-project-lite",
"postgres-protocol",
"postgres-types",
"rand",
"socket2 0.5.5",
"tokio",
"tokio-util",
"whoami",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "tokio-rustls"
version = "0.24.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
2023-05-17 18:45:43 +08:00
dependencies = [
"rustls 0.21.10",
2023-05-17 18:45:43 +08:00
"tokio",
]
2023-12-08 17:46:20 +08:00
[[package]]
name = "tokio-rustls"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
dependencies = [
"rustls 0.22.1",
2023-12-08 17:46:20 +08:00
"rustls-pki-types",
"tokio",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "tokio-stream"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-tungstenite"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
dependencies = [
"futures-util",
"log",
2023-12-28 18:57:21 +08:00
"rustls 0.22.1",
"rustls-pki-types",
"tokio",
2023-12-28 18:57:21 +08:00
"tokio-rustls 0.25.0",
"tungstenite",
"webpki-roots 0.26.0",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "tokio-util"
version = "0.7.10"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "toml_datetime"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
[[package]]
name = "toml_edit"
version = "0.19.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
dependencies = [
"indexmap 2.1.0",
"toml_datetime",
"winnow",
]
[[package]]
name = "toml_edit"
version = "0.20.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81"
dependencies = [
"indexmap 2.1.0",
"toml_datetime",
"winnow",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "tonic"
version = "0.9.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a"
2023-05-17 18:45:43 +08:00
dependencies = [
"async-trait",
"axum",
"base64 0.21.5",
2023-05-17 18:45:43 +08:00
"bytes",
"futures-core",
"futures-util",
"h2 0.3.22",
"http 0.2.11",
"http-body 0.4.6",
2023-12-28 18:57:21 +08:00
"hyper 0.14.28",
2023-05-17 18:45:43 +08:00
"hyper-timeout",
"percent-encoding",
"pin-project",
"prost",
"tokio",
"tokio-stream",
"tower",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
"futures-util",
"indexmap 1.9.3",
2023-05-17 18:45:43 +08:00
"pin-project",
"pin-project-lite",
"rand",
2023-05-17 18:45:43 +08:00
"slab",
"tokio",
"tokio-util",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tracing"
2023-10-21 01:18:18 +08:00
version = "0.1.40"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 01:18:18 +08:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2023-05-17 18:45:43 +08:00
dependencies = [
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-appender"
version = "0.2.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf"
2023-05-17 18:45:43 +08:00
dependencies = [
"crossbeam-channel",
"thiserror",
"time",
2023-05-17 18:45:43 +08:00
"tracing-subscriber",
]
[[package]]
name = "tracing-attributes"
2023-10-15 15:07:19 +08:00
version = "0.1.27"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-15 15:07:19 +08:00
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "tracing-core"
2023-10-15 15:07:19 +08:00
version = "0.1.32"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-15 15:07:19 +08:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2023-05-17 18:45:43 +08:00
dependencies = [
"once_cell",
"valuable",
]
2023-09-16 01:39:03 +08:00
[[package]]
name = "tracing-journald"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba316a74e8fc3c3896a850dba2375928a9fa171b085ecddfc7c054d39970f3fd"
dependencies = [
"libc",
"tracing-core",
"tracing-subscriber",
]
[[package]]
name = "tracing-log"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
dependencies = [
"log",
"once_cell",
2023-05-17 18:45:43 +08:00
"tracing-core",
]
[[package]]
name = "tracing-opentelemetry"
2023-11-30 19:43:28 +08:00
version = "0.22.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-30 19:43:28 +08:00
checksum = "c67ac25c5407e7b961fafc6f7e9aa5958fd297aada2d20fa2ae1737357e55596"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-11-30 19:43:28 +08:00
"js-sys",
2023-05-17 18:45:43 +08:00
"once_cell",
"opentelemetry",
"opentelemetry_sdk",
"smallvec",
2023-05-17 18:45:43 +08:00
"tracing",
"tracing-core",
2023-11-30 19:43:28 +08:00
"tracing-log",
2023-05-17 18:45:43 +08:00
"tracing-subscriber",
2023-11-30 19:43:28 +08:00
"web-time",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "tracing-subscriber"
version = "0.3.18"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
2023-05-17 18:45:43 +08:00
dependencies = [
"matchers",
"nu-ansi-term",
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
2023-11-30 19:43:28 +08:00
"tracing-log",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "try-lock"
2023-12-08 17:46:20 +08:00
version = "0.2.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 17:46:20 +08:00
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2023-05-17 18:45:43 +08:00
2023-06-08 20:53:29 +08:00
[[package]]
name = "try_map"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb1626d07cb5c1bb2cf17d94c0be4852e8a7c02b041acec9a8c5bdda99f9d580"
[[package]]
name = "tungstenite"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
dependencies = [
"byteorder",
"bytes",
"data-encoding",
"http 1.0.0",
"httparse",
"log",
"rand",
2023-12-28 18:57:21 +08:00
"rustls 0.22.1",
"rustls-pki-types",
"sha1",
"thiserror",
"url",
"utf-8",
]
[[package]]
name = "twofish"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a78e83a30223c757c3947cd144a31014ff04298d8719ae10d03c31c0448c8013"
dependencies = [
"cipher 0.4.4",
]
[[package]]
name = "twox-hash"
version = "1.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
dependencies = [
"cfg-if",
2023-12-01 14:49:12 +08:00
"rand",
"static_assertions",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "typenum"
version = "1.17.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2023-05-17 18:45:43 +08:00
2023-08-29 01:44:23 +08:00
[[package]]
name = "typewit"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6779a69cc5f9a7388274a0a8a353eb1c9e45195f9ae74a26690b055a7cf9592a"
dependencies = [
"typewit_proc_macros",
]
[[package]]
name = "typewit_proc_macros"
version = "1.8.1"
2023-08-29 01:44:23 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e36a83ea2b3c704935a01b4642946aadd445cea40b10935e3f8bd8052b8193d6"
2023-08-29 01:44:23 +08:00
2023-08-02 21:48:15 +08:00
[[package]]
name = "unicase"
2023-08-29 01:44:23 +08:00
version = "2.7.0"
2023-08-02 21:48:15 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2023-08-02 21:48:15 +08:00
dependencies = [
"version_check",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "unicode-bidi"
2023-12-08 17:46:20 +08:00
version = "0.3.14"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 17:46:20 +08:00
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
2023-05-17 18:45:43 +08:00
[[package]]
name = "unicode-ident"
version = "1.0.12"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2023-05-17 18:45:43 +08:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-script"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d817255e1bed6dfd4ca47258685d14d2bdcfbc64fdc9e3819bd5848057b8ecc"
[[package]]
name = "unicode-security"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ef5756b3097992b934b06608c69f48448a0fbe804bb1e72b982f6d7983e9e63"
dependencies = [
"unicode-normalization",
"unicode-script",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "unicode-width"
version = "0.1.11"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2023-07-04 00:48:43 +08:00
2023-05-17 18:45:43 +08:00
[[package]]
name = "unicode-xid"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
[[package]]
name = "universal-hash"
2023-05-23 21:49:21 +08:00
version = "0.5.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 21:49:21 +08:00
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2023-05-17 18:45:43 +08:00
dependencies = [
"crypto-common",
"subtle",
]
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2023-05-17 18:45:43 +08:00
[[package]]
name = "url"
version = "2.5.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2023-05-17 18:45:43 +08:00
dependencies = [
"form_urlencoded",
"idna 0.5.0",
2023-05-17 18:45:43 +08:00
"percent-encoding",
]
[[package]]
name = "urlencoding"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2023-05-17 18:45:43 +08:00
[[package]]
name = "utf-8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2023-07-04 00:48:43 +08:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2023-05-17 18:45:43 +08:00
[[package]]
name = "utils"
2024-01-14 17:53:41 +08:00
version = "0.5.3"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-12-30 16:43:18 +08:00
"ahash 0.8.7",
"arc-swap",
"base64 0.21.5",
"chrono",
"dashmap",
"futures",
2023-05-17 18:45:43 +08:00
"mail-auth",
2023-05-18 01:35:36 +08:00
"mail-send",
2023-05-17 18:45:43 +08:00
"opentelemetry",
"opentelemetry-otlp",
"opentelemetry-semantic-conventions",
2023-11-30 19:43:28 +08:00
"opentelemetry_sdk",
"parking_lot",
"pem",
2023-05-17 18:45:43 +08:00
"privdrop",
2024-01-07 03:02:31 +08:00
"proxy-header",
"rand",
"rcgen",
"reqwest",
"ring 0.17.7",
"rustls 0.22.1",
2023-12-02 22:52:05 +08:00
"rustls-pemfile 2.0.0",
2023-12-08 17:46:20 +08:00
"rustls-pki-types",
2023-05-17 18:45:43 +08:00
"serde",
"serde_json",
2023-05-17 18:45:43 +08:00
"smtp-proto",
"tokio",
2023-12-08 17:46:20 +08:00
"tokio-rustls 0.25.0",
2023-05-17 18:45:43 +08:00
"tracing",
"tracing-appender",
2023-09-16 01:39:03 +08:00
"tracing-journald",
2023-05-17 18:45:43 +08:00
"tracing-opentelemetry",
"tracing-subscriber",
2023-12-02 22:52:05 +08:00
"webpki-roots 0.26.0",
"x509-parser",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "uuid"
version = "1.6.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
2023-08-02 00:39:33 +08:00
dependencies = [
"getrandom",
2023-08-02 00:39:33 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2023-12-04 02:40:16 +08:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
2023-05-17 18:45:43 +08:00
[[package]]
name = "want"
version = "0.3.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2023-05-17 18:45:43 +08:00
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2023-12-02 22:52:05 +08:00
version = "0.2.89"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-12-02 22:52:05 +08:00
version = "0.2.89"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
2023-05-17 18:45:43 +08:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-12-02 22:52:05 +08:00
version = "0.4.39"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-12-02 22:52:05 +08:00
version = "0.2.89"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
2023-05-17 18:45:43 +08:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-12-02 22:52:05 +08:00
version = "0.2.89"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
2023-05-17 18:45:43 +08:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-12-02 22:52:05 +08:00
version = "0.2.89"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
2023-05-17 18:45:43 +08:00
[[package]]
name = "wasm-streams"
2023-08-29 01:44:23 +08:00
version = "0.3.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7"
2023-05-17 18:45:43 +08:00
dependencies = [
"futures-util",
"js-sys",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
[[package]]
name = "web-sys"
2023-12-02 22:52:05 +08:00
version = "0.3.66"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 22:52:05 +08:00
checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f"
2023-05-17 18:45:43 +08:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2023-11-30 19:43:28 +08:00
[[package]]
name = "web-time"
2023-12-28 18:57:21 +08:00
version = "0.2.4"
2023-11-30 19:43:28 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0"
2023-11-30 19:43:28 +08:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "webpki"
version = "0.22.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
2023-05-17 18:45:43 +08:00
dependencies = [
"ring 0.17.7",
"untrusted 0.9.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "webpki-roots"
version = "0.22.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
dependencies = [
"webpki",
]
2023-12-13 01:45:52 +08:00
[[package]]
name = "webpki-roots"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338"
dependencies = [
"rustls-webpki 0.100.3",
]
2023-08-19 01:48:57 +08:00
[[package]]
name = "webpki-roots"
version = "0.25.3"
2023-08-19 01:48:57 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10"
2023-08-19 01:48:57 +08:00
2023-12-02 22:52:05 +08:00
[[package]]
name = "webpki-roots"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de2cfda980f21be5a7ed2eadb3e6fe074d56022bea2cdeb1a62eb220fc04188"
dependencies = [
"rustls-pki-types",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "whatlang"
2023-08-19 01:48:57 +08:00
version = "0.16.3"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:48:57 +08:00
checksum = "dcdcd0195a5b871e50926da8e881277f36a4621b3220d85092e7b91cc85f6bd9"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-05-23 21:49:21 +08:00
"hashbrown 0.12.3",
2023-05-17 18:45:43 +08:00
"once_cell",
]
[[package]]
name = "which"
version = "4.4.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
2023-05-17 18:45:43 +08:00
dependencies = [
"either",
"home",
2023-05-17 18:45:43 +08:00
"once_cell",
"rustix",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "whoami"
version = "1.4.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
2023-11-30 19:43:28 +08:00
dependencies = [
"wasm-bindgen",
"web-sys",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "widestring"
2023-06-08 20:53:29 +08:00
version = "1.0.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-08 20:53:29 +08:00
checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8"
2023-05-17 18:45:43 +08: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"
2023-12-01 14:49:12 +08:00
[[package]]
name = "winapi-util"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
dependencies = [
"winapi",
]
2023-05-17 18:45:43 +08:00
[[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]]
2023-10-18 02:56:48 +08:00
name = "windows-core"
version = "0.52.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2023-05-17 18:45:43 +08:00
dependencies = [
"windows-targets 0.52.0",
2023-05-17 18:45:43 +08:00
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets 0.42.2",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-08-29 01:44:23 +08:00
"windows-targets 0.48.5",
2023-07-04 00:48:43 +08:00
]
2023-12-02 22:52:05 +08:00
[[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.0",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "windows-targets"
2023-08-29 01:44:23 +08:00
version = "0.48.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-08-29 01:44:23 +08: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",
2023-05-17 18:45:43 +08:00
]
2023-12-02 22:52:05 +08:00
[[package]]
name = "windows-targets"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
dependencies = [
"windows_aarch64_gnullvm 0.52.0",
"windows_aarch64_msvc 0.52.0",
"windows_i686_gnu 0.52.0",
"windows_i686_msvc 0.52.0",
"windows_x86_64_gnu 0.52.0",
"windows_x86_64_gnullvm 0.52.0",
"windows_x86_64_msvc 0.52.0",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-29 01:44:23 +08:00
version = "0.48.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-05-17 18:45:43 +08:00
2023-12-02 22:52:05 +08:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
2023-05-17 18:45:43 +08:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
[[package]]
name = "windows_aarch64_msvc"
2023-08-29 01:44:23 +08:00
version = "0.48.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-05-17 18:45:43 +08:00
2023-12-02 22:52:05 +08:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
2023-05-17 18:45:43 +08:00
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
[[package]]
name = "windows_i686_gnu"
2023-08-29 01:44:23 +08:00
version = "0.48.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-05-17 18:45:43 +08:00
2023-12-02 22:52:05 +08:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
2023-05-17 18:45:43 +08:00
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
[[package]]
name = "windows_i686_msvc"
2023-08-29 01:44:23 +08:00
version = "0.48.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-05-17 18:45:43 +08:00
2023-12-02 22:52:05 +08:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
2023-05-17 18:45:43 +08:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
[[package]]
name = "windows_x86_64_gnu"
2023-08-29 01:44:23 +08:00
version = "0.48.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-05-17 18:45:43 +08:00
2023-12-02 22:52:05 +08:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
2023-05-17 18:45:43 +08:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-29 01:44:23 +08:00
version = "0.48.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-05-17 18:45:43 +08:00
2023-12-02 22:52:05 +08:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
2023-05-17 18:45:43 +08:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
[[package]]
name = "windows_x86_64_msvc"
2023-08-29 01:44:23 +08:00
version = "0.48.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-05-17 18:45:43 +08:00
2023-12-02 22:52:05 +08:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
2023-12-01 14:49:12 +08:00
[[package]]
name = "winnow"
version = "0.5.32"
2023-12-01 14:49:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8434aeec7b290e8da5c3f0d628cb0eac6cabcb31d14bb74f779a08109a5914d6"
2023-12-01 14:49:12 +08:00
dependencies = [
"memchr",
]
2023-06-08 20:53:29 +08:00
[[package]]
name = "winreg"
version = "0.50.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
dependencies = [
"cfg-if",
"windows-sys 0.48.0",
]
2023-08-02 00:39:33 +08:00
[[package]]
name = "wyz"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
dependencies = [
"tap",
]
[[package]]
name = "x25519-dalek"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96"
dependencies = [
"curve25519-dalek",
"rand_core",
"zeroize",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "x509-parser"
2023-08-10 01:47:27 +08:00
version = "0.15.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-10 01:47:27 +08:00
checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da"
2023-05-17 18:45:43 +08:00
dependencies = [
"asn1-rs",
"data-encoding",
"der-parser",
"lazy_static",
"nom",
"oid-registry",
"rusticata-macros",
"thiserror",
"time",
2023-05-17 18:45:43 +08:00
]
2023-07-11 23:16:08 +08:00
[[package]]
name = "xattr"
2023-12-30 00:33:55 +08:00
version = "1.2.0"
2023-07-11 23:16:08 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-30 00:33:55 +08:00
checksum = "914566e6413e7fa959cc394fb30e563ba80f3541fbd40816d4c05a0fc3f2a0f1"
2023-07-11 23:16:08 +08:00
dependencies = [
"libc",
"linux-raw-sys",
"rustix",
2023-07-11 23:16:08 +08:00
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "xml-rs"
version = "0.8.19"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a"
2023-05-17 18:45:43 +08:00
[[package]]
name = "xxhash-rust"
2023-12-28 18:57:21 +08:00
version = "0.8.8"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "53be06678ed9e83edb1745eb72efc0bbcd7b5c3c35711a860906aed827a13d61"
2023-05-17 18:45:43 +08:00
[[package]]
name = "yasna"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
dependencies = [
"time",
]
[[package]]
name = "zerocopy"
2023-12-28 18:57:21 +08:00
version = "0.7.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
2023-12-28 18:57:21 +08:00
version = "0.7.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-28 18:57:21 +08:00
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "zeroize"
version = "1.7.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.47",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "zip"
2023-05-23 21:49:21 +08:00
version = "0.6.6"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 21:49:21 +08:00
checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-05-23 21:49:21 +08:00
"aes",
2023-05-17 18:45:43 +08:00
"byteorder",
"bzip2",
"constant_time_eq 0.1.5",
"crc32fast",
"crossbeam-utils",
"flate2",
2023-06-02 17:03:30 +08:00
"hmac 0.12.1",
"pbkdf2 0.11.0",
2023-05-17 18:45:43 +08:00
"sha1",
"time",
2023-12-01 14:49:12 +08:00
"zstd 0.11.2+zstd.1.5.2",
2023-05-17 18:45:43 +08:00
]
2023-07-11 23:16:08 +08:00
[[package]]
name = "zip-extract"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb654964c003959ed64cbd0d7b329bcdcbd9690facd50c8617748d3622543972"
dependencies = [
"log",
"thiserror",
"zip",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "zstd"
version = "0.11.2+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
dependencies = [
2023-12-01 14:49:12 +08:00
"zstd-safe 5.0.2+zstd.1.5.2",
]
[[package]]
name = "zstd"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c"
dependencies = [
"zstd-safe 6.0.6",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "zstd-safe"
version = "5.0.2+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
dependencies = [
"libc",
"zstd-sys",
]
2023-12-01 14:49:12 +08:00
[[package]]
name = "zstd-safe"
version = "6.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581"
dependencies = [
"libc",
"zstd-sys",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "zstd-sys"
2023-10-15 15:07:19 +08:00
version = "2.0.9+zstd.1.5.5"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-15 15:07:19 +08:00
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
2023-05-17 18:45:43 +08:00
dependencies = [
"cc",
"pkg-config",
]