mirror of
https://github.com/stalwartlabs/smtp-server.git
synced 2024-11-24 15:20:16 +00:00
31 lines
816 B
TOML
31 lines
816 B
TOML
[package]
|
|
name = "smtp-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[dependencies]
|
|
mail-auth = { path = "/home/vagrant/code/mail-auth" }
|
|
mail-send = { path = "/home/vagrant/code/mail-send", default-features = false, features = ["cram-md5"] }
|
|
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", features = ["full_encoding", "ludicrous_mode"] }
|
|
smtp-proto = { path = "/home/vagrant/code/smtp-proto" }
|
|
ahash = { version = "0.8" }
|
|
rustls = "0.20"
|
|
rustls-pemfile = "1.0"
|
|
tokio = { version = "1.23", features = ["full"] }
|
|
tokio-rustls = { version = "0.23"}
|
|
webpki-roots = { version = "0.22"}
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
parking_lot = "0.12"
|
|
regex = "1.7.0"
|
|
dashmap = "5.4"
|
|
blake3 = "1.3"
|
|
lru-cache = "0.1.2"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.4.0"
|
|
|
|
[[bench]]
|
|
name = "hash"
|
|
harness = false
|