mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-10 17:42:51 +08:00
46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[package]
|
|
name = "utils"
|
|
version = "0.9.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
trc = { path = "../trc" }
|
|
rustls = { version = "0.23.5", default-features = false, features = ["std", "ring", "tls12"] }
|
|
rustls-pemfile = "2.0"
|
|
rustls-pki-types = { version = "1" }
|
|
tokio = { version = "1.23", features = ["net", "macros"] }
|
|
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "tls12"] }
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
mail-auth = { version = "0.4" }
|
|
smtp-proto = { version = "0.1" }
|
|
mail-send = { version = "0.4", default-features = false, features = ["cram-md5", "ring", "tls12"] }
|
|
dashmap = "6.0"
|
|
ahash = { version = "0.8" }
|
|
chrono = "0.4"
|
|
rand = "0.8.5"
|
|
webpki-roots = { version = "0.26"}
|
|
ring = { version = "0.17" }
|
|
base64 = "0.22"
|
|
serde_json = "1.0"
|
|
rcgen = "0.13"
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "http2"]}
|
|
x509-parser = "0.16.0"
|
|
pem = "3.0"
|
|
parking_lot = "0.12"
|
|
futures = "0.3"
|
|
regex = "1.7.0"
|
|
blake3 = "1.3.3"
|
|
lru-cache = "0.1.2"
|
|
http-body-util = "0.1.0"
|
|
form_urlencoded = "1.1.0"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
privdrop = "0.5.3"
|
|
tracing-journald = "0.3"
|
|
|
|
[features]
|
|
test_mode = []
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.23", features = ["full"] }
|