mail-server/Cargo.lock

7084 lines
162 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"
version = "0.8.6"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a"
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.4"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44"
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.2"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140"
2023-07-04 00:48:43 +08:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "anstyle-wincon"
version = "3.0.1"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628"
2023-07-04 00:48:43 +08:00
dependencies = [
"anstyle",
"windows-sys 0.48.0",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "anyhow"
2023-08-19 01:48:57 +08:00
version = "1.0.75"
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 = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
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",
]
[[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.39",
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.39",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "async-trait"
2023-10-15 15:07:19 +08:00
version = "0.1.74"
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 = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "atoi"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
dependencies = [
"num-traits",
]
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",
2023-05-17 18:45:43 +08:00
"http-body 0.4.5",
2023-07-03 22:38:49 +08:00
"hyper 0.14.27",
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",
2023-05-17 18:45:43 +08:00
"http-body 0.4.5",
"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"
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "base64"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5"
[[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-05-31 01:27:54 +08:00
[[package]]
name = "bb8"
2023-06-02 17:03:30 +08:00
version = "0.8.1"
2023-05-31 01:27:54 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-02 17:03:30 +08:00
checksum = "98b4b0f25f18bcdc3ac72bdb486ed0acf7e185221fd4dc985bc15db5800b0ba2"
2023-05-31 01:27:54 +08:00
dependencies = [
"async-trait",
"futures-channel",
"futures-util",
"parking_lot",
"tokio",
]
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-06-08 20:53:29 +08:00
version = "0.64.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 = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
2023-05-17 18:45:43 +08:00
dependencies = [
"bitflags 1.3.2",
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
"peeking_take_while",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
2023-06-08 20:53:29 +08:00
"syn 1.0.109",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "bindgen"
2023-06-08 20:53:29 +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-06-08 20:53:29 +08:00
checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5"
2023-05-17 18:45:43 +08:00
dependencies = [
"bitflags 1.3.2",
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
2023-06-08 20:53:29 +08:00
"log",
2023-05-17 18:45:43 +08:00
"peeking_take_while",
"prettyplease",
2023-05-17 18:45:43 +08:00
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
"syn 2.0.39",
2023-06-08 20:53:29 +08:00
"which",
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"
dependencies = [
"serde",
]
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"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf617fabf5cdbdc92f774bfe5062d870f228b80056d41180797abf48bed4056e"
dependencies = [
"borsh-derive",
"cfg_aliases",
]
[[package]]
name = "borsh-derive"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f404657a7ea7b5249e36808dff544bc88a28f26e0ac40009f674b7a009d14be3"
dependencies = [
"once_cell",
"proc-macro-crate 2.0.0",
"proc-macro2",
"quote",
"syn 2.0.39",
"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.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
dependencies = [
"glob",
"libc",
"libloading",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "clap"
version = "4.4.8"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64"
2023-07-04 00:48:43 +08:00
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
version = "4.4.8"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc"
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.39",
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"
[[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-08-10 01:47:27 +08:00
version = "0.9.5"
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 = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
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"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
[[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",
]
[[package]]
name = "crc"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
version = "2.4.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
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"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
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"
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.15"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
2023-05-17 18:45:43 +08:00
dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils",
"memoffset 0.9.0",
2023-05-17 18:45:43 +08:00
"scopeguard",
]
[[package]]
name = "crossbeam-queue"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.16"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
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"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a"
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",
"rustc_version",
"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.39",
]
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 = [
"darling_core",
"darling_macro",
]
[[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.39",
]
[[package]]
name = "darling_macro"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
dependencies = [
"darling_core",
"quote",
"syn 2.0.39",
]
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.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40b75ba49590d27f677d3bebaf76cd15889ca8b308bc7ba99bfa25f1d7269c13"
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"
2023-10-15 15:07:19 +08:00
version = "0.3.9"
2023-08-10 01:47:27 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-15 15:07:19 +08:00
checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"
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 = [
"ahash 0.8.6",
2023-06-02 17:03:30 +08:00
"argon2",
2023-05-31 01:27:54 +08:00
"async-trait",
"bb8",
"flate2",
2023-07-24 17:48:23 +08:00
"futures",
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",
"reqwest",
"rustls 0.21.9",
2023-06-02 17:03:30 +08:00
"scrypt",
"sha1",
"sha2 0.10.8",
"sieve-rs",
2023-05-31 01:27:54 +08:00
"smtp-proto",
"sqlx",
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
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.39",
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"
2023-05-17 18:45:43 +08:00
[[package]]
name = "dotenvy"
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
[[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
dependencies = [
"serde",
]
[[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.39",
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"
version = "0.3.7"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8"
2023-05-17 18:45:43 +08:00
dependencies = [
"libc",
"windows-sys 0.48.0",
]
[[package]]
name = "etcetera"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
dependencies = [
"cfg-if",
"home",
"windows-sys 0.48.0",
]
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
[[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"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
dependencies = [
"bit-set",
"regex",
]
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"
2023-08-10 01:47:27 +08:00
version = "0.2.22"
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 = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
2023-07-11 23:16:08 +08:00
dependencies = [
"cfg-if",
"libc",
2023-08-10 01:47:27 +08:00
"redox_syscall 0.3.5",
2023-07-11 23:16:08 +08:00
"windows-sys 0.48.0",
]
[[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 = "flume"
version = "0.11.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
2023-05-17 18:45:43 +08:00
dependencies = [
"futures-core",
"futures-sink",
"spin 0.9.8",
]
[[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.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c52dc5f41ce1da428247d7bf7697ee3d6ec09d5704dfd4797f4b94e74ef6972f"
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.39",
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.39",
]
[[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.39",
]
[[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.39",
]
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"
version = "0.3.29"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335"
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"
version = "0.3.29"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
2023-05-17 18:45:43 +08:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.29"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
2023-05-17 18:45:43 +08:00
[[package]]
name = "futures-executor"
version = "0.3.29"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc"
2023-05-17 18:45:43 +08:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-intrusive"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
dependencies = [
"futures-core",
"lock_api",
"parking_lot",
]
[[package]]
name = "futures-io"
version = "0.3.29"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"
2023-05-17 18:45:43 +08:00
[[package]]
name = "futures-macro"
version = "0.3.29"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "futures-sink"
version = "0.3.29"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"
2023-05-17 18:45:43 +08:00
[[package]]
name = "futures-task"
version = "0.3.29"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
2023-05-17 18:45:43 +08:00
[[package]]
name = "futures-util"
version = "0.3.29"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
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 = [
"ahash 0.8.6",
"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"
dependencies = [
"unicode-segmentation",
]
[[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.9",
2023-10-21 22:31:10 +08:00
"rustls-pemfile",
"thiserror",
"tinyvec",
"tokio",
"tokio-rustls",
"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.9",
2023-10-21 22:31:10 +08:00
"smallvec",
"thiserror",
"tokio",
"tokio-rustls",
"tracing",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
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"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
dependencies = [
"windows-sys 0.48.0",
]
[[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.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
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-07-03 22:38:49 +08:00
version = "0.14.27"
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 = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2023-05-17 18:45:43 +08:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2 0.3.22",
"http 0.2.11",
2023-05-17 18:45:43 +08:00
"http-body 0.4.5",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
2023-10-21 22:31:10 +08:00
"socket2 0.4.10",
2023-05-17 18:45:43 +08:00
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper"
version = "1.0.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "403f9214f3e703236b221f1a9cd88ec8b4adfa5296de01ab96216361f4692f56"
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-07-03 22:38:49 +08:00
"hyper 0.14.27",
"rustls 0.21.9",
2023-05-17 18:45:43 +08:00
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
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-07-03 22:38:49 +08:00
"hyper 0.14.27",
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"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ca339002caeb0d159cc6e023dff48e199f081e42fa039895c7c6f38b37f2e9d"
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",
"hyper 1.0.1",
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",
"tower",
"tower-service",
"tracing",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "iana-time-zone"
2023-10-18 02:56:48 +08:00
version = "0.1.58"
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 = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"
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"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
2023-06-22 01:26:28 +08:00
dependencies = [
"ahash 0.8.6",
"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.21.9",
2023-06-22 01:26:28 +08:00
"rustls-pemfile",
2023-06-23 01:29:39 +08:00
"store",
2023-06-22 01:26:28 +08:00
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
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 = [
"ahash 0.8.6",
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-07-16 16:34:18 +08:00
version = "0.4.9"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-16 16:34:18 +08:00
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
2023-07-04 00:48:43 +08:00
dependencies = [
"hermit-abi",
2023-07-22 02:21:51 +08:00
"rustix",
2023-07-04 00:48:43 +08:00
"windows-sys 0.48.0",
]
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 = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
"either",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "itoa"
2023-07-16 16:34:18 +08:00
version = "1.0.9"
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 = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
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"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
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",
"hyper 1.0.1",
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
"sqlx",
"store",
"tokio",
"tokio-tungstenite",
2023-05-17 18:45:43 +08:00
"tracing",
"tungstenite",
2023-05-17 18:45:43 +08:00
"utils",
]
[[package]]
name = "jmap-client"
version = "0.3.0"
source = "git+https://github.com/stalwartlabs/jmap-client#1e47fe8d08e10fc953c26555a24f2197cb7264e2"
2023-05-17 18:45:43 +08:00
dependencies = [
"ahash 0.8.6",
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",
"rustls 0.21.9",
2023-05-17 18:45:43 +08:00
"serde",
"serde_json",
"tokio",
"tokio-tungstenite",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "jmap_proto"
version = "0.1.0"
dependencies = [
"ahash 0.8.6",
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"
version = "0.3.65"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"
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"
2023-08-29 01:44:23 +08:00
version = "0.3.6"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "030400e39b2dff8beaa55986a17e0014ad657f569ca92426aafcb5e8e71faee7"
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.6"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 01:44:23 +08:00
checksum = "3376133edc39f027d551eb77b077c2865a0ef252b2e7d0dd6b6dc303db95d8b5"
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 0.10.5",
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.9",
2023-05-31 01:27:54 +08:00
"rustls-native-certs",
"thiserror",
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
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.150"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
2023-05-17 18:45:43 +08:00
[[package]]
name = "libloading"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
dependencies = [
"cfg-if",
"winapi",
]
[[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 0.4.1",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "librocksdb-sys"
version = "0.10.0+7.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fe4d5874f5ff2bc616e55e8c6086d478fcda13faf9495768a4aa1c22042d30b"
dependencies = [
"bindgen 0.64.0",
"bzip2-sys",
"cc",
"glob",
"libc",
"libz-sys",
"lz4-sys",
"zstd-sys",
]
[[package]]
name = "libsqlite3-sys"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326"
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"
version = "0.4.11"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"
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-10-21 22:31:10 +08:00
version = "0.3.6"
source = "git+https://github.com/stalwartlabs/mail-auth#8a1b216adc60b95192645033aed6d20fa89821cd"
2023-05-17 18:45:43 +08:00
dependencies = [
"ahash 0.8.6",
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-09-06 00:23:52 +08:00
"quick-xml 0.30.0",
2023-10-21 01:18:18 +08:00
"ring 0.17.5",
2023-05-17 18:45:43 +08:00
"rustls-pemfile",
"serde",
"serde_json",
"zip",
]
[[package]]
name = "mail-builder"
2023-08-10 01:47:27 +08:00
version = "0.3.1"
source = "git+https://github.com/stalwartlabs/mail-builder#665f46db8542a97f5b86fd1ff9ea8d74d5ab7e4f"
2023-05-17 18:45:43 +08:00
dependencies = [
"gethostname",
]
[[package]]
name = "mail-parser"
version = "0.9.2"
source = "git+https://github.com/stalwartlabs/mail-parser#65533d3faf6f147fa288fa30eae0bb4df80b2948"
2023-05-17 18:45:43 +08:00
dependencies = [
"encoding_rs",
"serde",
]
[[package]]
name = "mail-send"
version = "0.4.1"
source = "git+https://github.com/stalwartlabs/mail-send#53904ce6cf4fcb9a42a92a541f5d64d4d972d6cb"
2023-05-17 18:45:43 +08:00
dependencies = [
"base64 0.20.0",
"gethostname",
"md5",
"rustls 0.21.9",
2023-05-17 18:45:43 +08:00
"smtp-proto",
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
"webpki-roots 0.25.3",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "mail-server"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
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"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
dependencies = [
"ahash 0.8.6",
"bincode",
"directory",
"imap",
"imap_proto",
"jmap",
"jmap_proto",
"mail-parser",
"mail-send",
"md5",
"parking_lot",
"rustls 0.21.9",
"rustls-pemfile",
"sieve-rs",
"store",
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
"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"
version = "2.6.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
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",
]
[[package]]
name = "memoffset"
version = "0.9.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
2023-05-17 18:45:43 +08:00
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.9"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0"
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 = [
"darling",
"heck",
"num-bigint",
"proc-macro-crate 1.3.1",
"proc-macro-error",
"proc-macro2",
"quote",
"syn 2.0.39",
"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.9",
"rustls-pemfile",
"serde",
"serde_json",
"socket2 0.5.5",
"thiserror",
"tokio",
"tokio-rustls",
"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",
"bindgen 0.65.1",
"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",
"memoffset 0.7.1",
"pin-utils",
]
[[package]]
name = "nlp"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
dependencies = [
"ahash 0.8.6",
"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"
version = "0.32.1"
2023-07-03 22:38:49 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
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-06-08 20:53:29 +08:00
version = "1.18.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 = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
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"
version = "0.10.60"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800"
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.39",
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.1.6+3.1.4"
2023-07-09 17:06:37 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439fac53e092cd7442a3660c85dde4643ab3b5bd39040912388dcdabf6b88085"
2023-07-09 17:06:37 +08:00
dependencies = [
"cc",
]
2023-05-17 18:45:43 +08:00
[[package]]
name = "openssl-sys"
version = "0.9.96"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3812c071ba60da8b5677cc12bcb1d42989a65553772897a7e0355545a819838f"
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"
2023-11-30 19:43:28 +08:00
version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-30 19:43:28 +08:00
checksum = "536900a8093134cf9ccf00a27deb3532421099e958d9dd431135d0c7543ca1e8"
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",
2023-10-21 01:18:18 +08:00
"redox_syscall 0.4.1",
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 = "paste"
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 = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
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"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3163d2912b7c3b52d651a055f2c7eec9ba5cd22d26ef75b8dd3a59980b185923"
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.39",
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.39",
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-05-23 21:49:21 +08:00
version = "0.3.27"
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 = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2023-05-17 18:45:43 +08:00
[[package]]
name = "platforms"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0"
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.5.1"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b"
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",
"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",
"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.15"
2023-06-08 20:53:29 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d"
2023-06-08 20:53:29 +08:00
dependencies = [
"proc-macro2",
"syn 2.0.39",
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.70"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b"
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 0.10.5",
2023-05-17 18:45:43 +08:00
"proc-macro2",
"quote",
"syn 1.0.109",
]
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-09-06 00:23:52 +08:00
version = "0.30.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 = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956"
2023-05-17 18:45:43 +08:00
dependencies = [
"memchr",
]
[[package]]
name = "quote"
2023-08-19 01:48:57 +08:00
version = "1.0.33"
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 = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
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 0.10.5",
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 = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags 1.3.2",
]
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"
version = "0.11.22"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b"
2023-05-17 18:45:43 +08:00
dependencies = [
"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",
2023-05-17 18:45:43 +08:00
"http-body 0.4.5",
2023-07-03 22:38:49 +08:00
"hyper 0.14.27",
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.9",
2023-05-17 18:45:43 +08:00
"rustls-pemfile",
"serde",
"serde_json",
"serde_urlencoded",
"system-configuration",
2023-05-17 18:45:43 +08:00
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
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"
2023-10-21 01:18:18 +08:00
version = "0.17.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 01:18:18 +08:00
checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b"
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"
version = "0.7.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
dependencies = [
"bitvec",
"bytecheck",
"hashbrown 0.12.3",
"ptr_meta",
"rend",
"rkyv_derive",
"seahash",
"tinyvec",
"uuid",
]
[[package]]
name = "rkyv_derive"
version = "0.7.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
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"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "015439787fce1e75d55f279078d33ff14b4af5d93d995e8838ee4631301c8a99"
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"
version = "0.9.4"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a3211b01eea83d80687da9eef70e39d65144a3894866a5153a2723e425a157f"
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.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2"
dependencies = [
2023-10-18 02:56:48 +08:00
"bitflags 2.4.1",
2023-05-17 18:45:43 +08:00
"fallible-iterator",
"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"
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
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.25"
2023-07-04 00:48:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e"
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-05-17 18:45:43 +08:00
"windows-sys 0.48.0",
]
[[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.9"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9"
2023-05-17 18:45:43 +08:00
dependencies = [
"log",
"ring 0.17.5",
"rustls-webpki",
2023-05-17 18:45:43 +08:00
"sct",
]
[[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",
"rustls-pemfile",
"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
]
[[package]]
name = "rustls-webpki"
version = "0.101.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
dependencies = [
"ring 0.17.5",
"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"
2023-07-16 16:34:18 +08:00
version = "1.0.15"
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 = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
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"
version = "0.1.22"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
2023-05-17 18:45:43 +08:00
dependencies = [
"windows-sys 0.48.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.5",
"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",
]
[[package]]
name = "semver"
version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"
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.193"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
2023-05-17 18:45:43 +08:00
dependencies = [
"serde_derive",
]
2023-06-08 20:53:29 +08:00
[[package]]
name = "serde_bytes"
2023-07-16 16:34:18 +08:00
version = "0.11.12"
2023-06-08 20:53:29 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-16 16:34:18 +08:00
checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff"
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.193"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "serde_json"
version = "1.0.108"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
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",
]
[[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.39",
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-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"
version = "0.3.1"
2023-10-21 01:18:18 +08:00
source = "git+https://github.com/stalwartlabs/sieve#b7b62b3b33d05b7c1e50ea5123a35ef461c66b8d"
2023-05-17 18:45:43 +08:00
dependencies = [
"ahash 0.8.6",
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"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
2023-05-17 18:45:43 +08:00
dependencies = [
"ahash 0.8.6",
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",
"hyper 1.0.1",
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.21.9",
2023-05-17 18:45:43 +08:00
"rustls-pemfile",
"serde",
"serde_json",
"sha1",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
"sieve-rs",
"smtp-proto",
"sqlx",
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
2023-05-17 18:45:43 +08:00
"tracing",
"unicode-security",
2023-05-17 18:45:43 +08:00
"utils",
"webpki-roots 0.25.3",
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.1"
source = "git+https://github.com/stalwartlabs/smtp-proto#d5949da111db6d9299c6a8928bf77f3dce337a1d"
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"
dependencies = [
"lock_api",
]
[[package]]
name = "spki"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
dependencies = [
"base64ct",
"der",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "sqlformat"
version = "0.2.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b7b278788e7be4d0d29c0f39497a0eef3fba6bbc8e70d8bf7fde46edeaa9e85"
2023-05-17 18:45:43 +08:00
dependencies = [
"itertools 0.11.0",
2023-05-17 18:45:43 +08:00
"nom",
"unicode_categories",
]
[[package]]
name = "sqlx"
version = "0.7.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e50c216e3624ec8e7ecd14c6a6a6370aad6ee5d8cfc3ab30b5162eeeef2ed33"
2023-05-17 18:45:43 +08:00
dependencies = [
"sqlx-core",
"sqlx-macros",
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
]
[[package]]
name = "sqlx-core"
version = "0.7.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d6753e460c998bbd4cd8c6f0ed9a64346fcca0723d6e75e52fdc351c5d2169d"
2023-05-17 18:45:43 +08:00
dependencies = [
"ahash 0.8.6",
2023-05-17 18:45:43 +08:00
"atoi",
"byteorder",
"bytes",
"crc",
"crossbeam-queue",
"dotenvy",
"either",
"event-listener",
"futures-channel",
"futures-core",
"futures-intrusive",
"futures-io",
"futures-util",
"hashlink",
"hex",
"indexmap 2.1.0",
2023-05-17 18:45:43 +08:00
"log",
"memchr",
"once_cell",
"paste",
"percent-encoding",
"rustls 0.21.9",
2023-05-17 18:45:43 +08:00
"rustls-pemfile",
"serde",
"serde_json",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
"smallvec",
"sqlformat",
"thiserror",
"tokio",
"tokio-stream",
"tracing",
"url",
2023-07-16 16:34:18 +08:00
"webpki-roots 0.24.0",
2023-05-17 18:45:43 +08:00
]
[[package]]
name = "sqlx-macros"
version = "0.7.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a793bb3ba331ec8359c1853bd39eed32cdd7baaf22c35ccf5c92a7e8d1189ec"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"sqlx-core",
"sqlx-macros-core",
"syn 1.0.109",
]
[[package]]
name = "sqlx-macros-core"
version = "0.7.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a4ee1e104e00dedb6aa5ffdd1343107b0a4702e862a84320ee7cc74782d96fc"
2023-05-17 18:45:43 +08:00
dependencies = [
"dotenvy",
"either",
"heck",
"hex",
"once_cell",
"proc-macro2",
"quote",
"serde",
"serde_json",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
"sqlx-core",
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
"syn 1.0.109",
"tempfile",
"tokio",
"url",
]
[[package]]
name = "sqlx-mysql"
version = "0.7.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "864b869fdf56263f4c95c45483191ea0af340f9f3e3e7b4d57a61c7c87a970db"
2023-05-17 18:45:43 +08:00
dependencies = [
"atoi",
"base64 0.21.5",
2023-10-18 02:56:48 +08:00
"bitflags 2.4.1",
2023-05-17 18:45:43 +08:00
"byteorder",
"bytes",
"crc",
2023-06-02 17:03:30 +08:00
"digest 0.10.7",
2023-05-17 18:45:43 +08:00
"dotenvy",
"either",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"generic-array",
"hex",
"hkdf",
2023-06-02 17:03:30 +08:00
"hmac 0.12.1",
2023-05-17 18:45:43 +08:00
"itoa",
"log",
"md-5 0.10.6",
2023-05-17 18:45:43 +08:00
"memchr",
"once_cell",
"percent-encoding",
"rand",
2023-05-17 18:45:43 +08:00
"rsa",
"serde",
"sha1",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"tracing",
"whoami",
]
[[package]]
name = "sqlx-postgres"
version = "0.7.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb7ae0e6a97fb3ba33b23ac2671a5ce6e3cabe003f451abd5a56e7951d975624"
2023-05-17 18:45:43 +08:00
dependencies = [
"atoi",
"base64 0.21.5",
2023-10-18 02:56:48 +08:00
"bitflags 2.4.1",
2023-05-17 18:45:43 +08:00
"byteorder",
"crc",
"dotenvy",
"etcetera",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"hex",
"hkdf",
2023-06-02 17:03:30 +08:00
"hmac 0.12.1",
2023-05-17 18:45:43 +08:00
"home",
"itoa",
"log",
"md-5 0.10.6",
2023-05-17 18:45:43 +08:00
"memchr",
"once_cell",
"rand",
2023-05-17 18:45:43 +08:00
"serde",
"serde_json",
"sha1",
"sha2 0.10.8",
2023-05-17 18:45:43 +08:00
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"tracing",
"whoami",
]
[[package]]
name = "sqlx-sqlite"
version = "0.7.2"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59dc83cf45d89c555a577694534fcd1b55c545a816c816ce51f20bbe56a4f3f"
2023-05-17 18:45:43 +08:00
dependencies = [
"atoi",
"flume",
"futures-channel",
"futures-core",
"futures-executor",
"futures-intrusive",
"futures-util",
"libsqlite3-sys",
"log",
"percent-encoding",
"serde",
"sqlx-core",
"tracing",
"url",
]
2023-07-04 00:48:43 +08:00
[[package]]
name = "stalwart-cli"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
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",
"reqwest",
"rpassword",
"serde",
"serde_json",
"tokio",
]
2023-07-09 17:06:37 +08:00
[[package]]
name = "stalwart-install"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
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",
2023-07-09 17:06:37 +08:00
"reqwest",
"rpassword",
"rusqlite",
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 = [
"ahash 0.8.6",
"async-trait",
2023-05-17 18:45:43 +08:00
"blake3",
2023-11-30 19:43:28 +08:00
"deadpool-postgres",
2023-05-17 18:45:43 +08:00
"farmhash",
"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-11-30 19:43:28 +08:00
"ring 0.17.5",
2023-05-17 18:45:43 +08:00
"roaring",
"rocksdb",
"rusqlite",
2023-06-07 00:53:29 +08:00
"rust-s3",
2023-11-30 19:43:28 +08:00
"rustls 0.21.9",
2023-05-17 18:45:43 +08:00
"serde",
"tokio",
2023-11-30 19:43:28 +08:00
"tokio-postgres",
"tokio-rustls",
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-06-02 17:03:30 +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-06-02 17:03:30 +08:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
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.39"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
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.39",
]
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"
version = "3.8.1"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"fastrand",
"redox_syscall 0.4.1",
2023-07-22 02:21:51 +08:00
"rustix",
2023-06-08 20:53:29 +08:00
"windows-sys 0.48.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 = [
"ahash 0.8.6",
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",
"hyper 1.0.1",
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.21.9",
2023-05-17 18:45:43 +08:00
"rustls-pemfile",
"serde",
"serde_json",
"serial_test",
"sieve-rs",
"smtp",
"smtp-proto",
"sqlx",
"store",
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
2023-05-17 18:45:43 +08:00
"tracing",
"tracing-subscriber",
"utils",
]
[[package]]
name = "thiserror"
2023-10-21 01:18:18 +08:00
version = "1.0.50"
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 = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
2023-05-17 18:45:43 +08:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-10-21 01:18:18 +08:00
version = "1.0.50"
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 = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
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-10-15 15:07:19 +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-10-15 15:07:19 +08:00
checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
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"
version = "0.2.15"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
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"
version = "1.34.0"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
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.39",
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",
"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.9",
2023-05-17 18:45:43 +08:00
"tokio",
]
[[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",
]
2023-08-02 00:39:33 +08:00
[[package]]
name = "tokio-tungstenite"
version = "0.20.1"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c"
2023-08-02 00:39:33 +08:00
dependencies = [
"futures-util",
"log",
"rustls 0.21.9",
2023-08-02 00:39:33 +08:00
"tokio",
"tokio-rustls",
"tungstenite",
"webpki-roots 0.25.3",
2023-08-02 00:39:33 +08:00
]
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",
2023-05-17 18:45:43 +08:00
"http-body 0.4.5",
2023-07-03 22:38:49 +08:00
"hyper 0.14.27",
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 = [
"log",
"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.39",
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"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
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"
2023-08-02 00:39:33 +08:00
[[package]]
name = "tungstenite"
version = "0.20.1"
2023-08-02 00:39:33 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"
2023-08-02 00:39:33 +08:00
dependencies = [
"byteorder",
"bytes",
"data-encoding",
"http 0.2.11",
2023-08-02 00:39:33 +08:00
"httparse",
"log",
"rand",
"rustls 0.21.9",
2023-08-02 00:39:33 +08:00
"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"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
[[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-05-17 18:45:43 +08:00
[[package]]
name = "unicode-segmentation"
version = "1.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
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 = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
[[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"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
2023-05-17 18:45:43 +08:00
dependencies = [
"ahash 0.8.6",
"chrono",
"dashmap",
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",
2023-05-17 18:45:43 +08:00
"privdrop",
"rand",
"rustls 0.21.9",
2023-05-17 18:45:43 +08:00
"rustls-pemfile",
"serde",
"smtp-proto",
"tokio",
2023-09-06 00:23:52 +08:00
"tokio-rustls",
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-11-30 19:43:28 +08:00
"webpki-roots 0.25.3",
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"
[[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"
version = "0.2.88"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.88"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"
2023-05-17 18:45:43 +08:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn 2.0.39",
2023-05-17 18:45:43 +08:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.38"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02"
2023-05-17 18:45:43 +08:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.88"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"
2023-05-17 18:45:43 +08:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.88"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"
2023-05-17 18:45:43 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
2023-05-17 18:45:43 +08:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.88"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"
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"
version = "0.3.65"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85"
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"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57099a701fb3a8043f993e8228dc24229c7b942e2b009a1b962e54489ba1d3bf"
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 = [
2023-10-21 01:18:18 +08:00
"ring 0.17.5",
"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-07-16 16:34:18 +08:00
[[package]]
name = "webpki-roots"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888"
dependencies = [
"rustls-webpki",
2023-07-16 16:34:18 +08:00
]
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-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.51.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 = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
2023-05-17 18:45:43 +08:00
dependencies = [
2023-08-29 01:44:23 +08:00
"windows-targets 0.48.5",
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
]
[[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
]
[[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
[[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
[[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
[[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
[[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
[[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
[[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-01 14:49:12 +08:00
[[package]]
name = "winnow"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b"
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-08-10 01:47:27 +08:00
version = "1.0.1"
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 = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985"
2023-07-11 23:16:08 +08:00
dependencies = [
"libc",
]
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"
version = "0.8.7"
2023-05-17 18:45:43 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9828b178da53440fa9c766a3d2f73f7cf5d0ac1fe3980c1e5018d899fd19e07b"
2023-05-17 18:45:43 +08:00
[[package]]
name = "zerocopy"
version = "0.7.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
]
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.39",
]
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",
]