smtp-server/Cargo.toml

38 lines
1.1 KiB
TOML
Raw Normal View History

2022-12-07 17:13:14 +00:00
[package]
name = "smtp-server"
version = "0.1.0"
edition = "2021"
[dependencies]
2022-12-15 18:31:34 +00:00
mail-auth = { path = "/home/vagrant/code/mail-auth" }
2023-01-01 15:07:50 +00:00
mail-send = { path = "/home/vagrant/code/mail-send", default-features = false, features = ["cram-md5", "skip-ehlo"] }
2022-12-23 18:03:27 +00:00
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", features = ["full_encoding", "ludicrous_mode"] }
2023-01-09 18:33:53 +00:00
mail-builder = { path = "/home/vagrant/code/mail-builder", features = ["ludicrous_mode"] }
2022-12-09 17:43:36 +00:00
smtp-proto = { path = "/home/vagrant/code/smtp-proto" }
2022-12-15 18:31:34 +00:00
ahash = { version = "0.8" }
2022-12-08 18:20:21 +00:00
rustls = "0.20"
rustls-pemfile = "1.0"
2022-12-15 18:31:34 +00:00
tokio = { version = "1.23", features = ["full"] }
tokio-rustls = { version = "0.23"}
webpki-roots = { version = "0.22"}
tracing = "0.1"
tracing-subscriber = "0.3"
2022-12-09 17:43:36 +00:00
parking_lot = "0.12"
2022-12-15 18:31:34 +00:00
regex = "1.7.0"
2022-12-16 17:20:35 +00:00
dashmap = "5.4"
blake3 = "1.3"
2022-12-22 17:52:55 +00:00
lru-cache = "0.1.2"
2023-01-01 15:07:50 +00:00
rand = "0.8.5"
2023-01-02 18:52:05 +00:00
x509-parser = "0.14.0"
2023-01-04 17:44:45 +00:00
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }
2023-01-13 17:42:38 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2022-12-16 17:20:35 +00:00
[dev-dependencies]
criterion = "0.4.0"
[[bench]]
name = "hash"
harness = false