mail-server/crates/smtp/Cargo.toml

66 lines
2.1 KiB
TOML
Raw 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"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
2023-05-17 02:25:38 +08:00
edition = "2021"
resolver = "2"
[dependencies]
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" }
2023-05-17 02:25:38 +08:00
mail-auth = { git = "https://github.com/stalwartlabs/mail-auth" }
mail-send = { git = "https://github.com/stalwartlabs/mail-send", default-features = false, features = ["cram-md5", "skip-ehlo"] }
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", features = ["full_encoding", "ludicrous_mode"] }
mail-builder = { git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] }
smtp-proto = { git = "https://github.com/stalwartlabs/smtp-proto" }
2023-09-06 00:23:52 +08:00
sieve-rs = { git = "https://github.com/stalwartlabs/sieve" }
2023-05-17 02:25:38 +08:00
ahash = { version = "0.8" }
rustls = "0.21.0"
2023-12-04 02:40:16 +08:00
rustls-pemfile = "2.0"
2023-05-17 02:25:38 +08:00
tokio = { version = "1.23", features = ["full"] }
tokio-rustls = { version = "0.24.0"}
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"
tracing = "0.1"
parking_lot = "0.12"
regex = "1.7.0"
dashmap = "5.4"
blake3 = "1.3"
lru-cache = "0.1.2"
rand = "0.8.5"
x509-parser = "0.15.0"
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "mysql", "sqlite" ] }
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-webpki-roots", "blocking"] }
2023-05-17 02:25:38 +08:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
num_cpus = "1.15.0"
lazy_static = "1.4"
2023-09-01 20:41:58 +08:00
whatlang = "0.16"
imagesize = "0.12"
idna = "0.5"
decancer = "1.6.1"
unicode-security = "0.1.0"
infer = "0.15.0"
2023-05-17 02:25:38 +08:00
[features]
test_mode = []
2023-05-18 01:35:36 +08:00
local_delivery = []
2023-05-17 02:25:38 +08:00
#[[bench]]
#name = "hash"
#harness = false