mail-server/crates/smtp/Cargo.toml

63 lines
1.9 KiB
TOML
Raw Permalink Normal View History

2023-05-17 02:25:38 +08:00
[package]
name = "smtp"
description = "Stalwart SMTP Server"
authors = [ "Stalwart Labs Ltd. <hello@stalw.art>"]
repository = "https://github.com/stalwartlabs/smtp-server"
homepage = "https://stalw.art/smtp"
keywords = ["smtp", "email", "mail", "server"]
categories = ["email"]
license = "AGPL-3.0-only OR LicenseRef-SEL"
2024-09-20 01:39:35 +08:00
version = "0.10.0"
2023-05-17 02:25:38 +08:00
edition = "2021"
resolver = "2"
[dependencies]
store = { path = "../store" }
2023-05-17 02:25:38 +08:00
utils = { path = "../utils" }
2023-10-12 01:21:11 +08:00
nlp = { path = "../nlp" }
2023-06-02 01:09:32 +08:00
directory = { path = "../directory" }
2024-03-25 02:20:36 +08:00
common = { path = "../common" }
2024-07-12 00:44:51 +08:00
trc = { path = "../trc" }
2024-09-20 01:39:35 +08:00
mail-auth = { version = "0.5" }
2024-07-03 21:14:50 +08:00
mail-send = { version = "0.4", default-features = false, features = ["cram-md5", "ring", "tls12"] }
2023-12-28 18:57:21 +08:00
mail-parser = { version = "0.9", features = ["full_encoding", "ludicrous_mode"] }
mail-builder = { version = "0.3", features = ["ludicrous_mode"] }
2024-02-09 07:03:57 +08:00
smtp-proto = { version = "0.1", features = ["serde_support"] }
2024-03-29 00:21:32 +08:00
sieve-rs = { version = "0.5" }
2023-05-17 02:25:38 +08:00
ahash = { version = "0.8" }
2024-07-03 21:14:50 +08:00
rustls = { version = "0.23.5", default-features = false, features = ["std", "ring", "tls12"] }
2023-12-04 02:40:16 +08:00
rustls-pemfile = "2.0"
2023-12-08 17:46:20 +08:00
rustls-pki-types = { version = "1" }
2023-05-17 02:25:38 +08:00
tokio = { version = "1.23", features = ["full"] }
2024-07-03 21:14:50 +08:00
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "tls12"] }
2023-12-04 02:40:16 +08:00
webpki-roots = { version = "0.26"}
hyper = { version = "1.0.1", features = ["server", "http1", "http2"] }
hyper-util = { version = "0.1.1", features = ["tokio"] }
http-body-util = "0.1.0"
2023-05-17 02:25:38 +08:00
form_urlencoded = "1.1.0"
sha1 = "0.10"
sha2 = "0.10.6"
md5 = "0.7.0"
2023-05-17 02:25:38 +08:00
rayon = "1.5"
parking_lot = "0.12"
regex = "1.7.0"
dashmap = "6.0"
2023-05-17 02:25:38 +08:00
blake3 = "1.3"
lru-cache = "0.1.2"
rand = "0.8.5"
x509-parser = "0.16.0"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "blocking", "http2"] }
serde = { version = "1.0", features = ["derive", "rc"] }
2023-05-17 02:25:38 +08:00
serde_json = "1.0"
num_cpus = "1.15.0"
bincode = "1.3.1"
2024-06-21 23:05:14 +08:00
chrono = "0.4"
2024-07-26 02:35:13 +08:00
2023-05-17 02:25:38 +08:00
[features]
test_mode = []
#[[bench]]
#name = "hash"
#harness = false