smtp-server/Cargo.toml

50 lines
1.5 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"] }
smtp-proto = { git = "https://github.com/stalwartlabs/smtp-proto" }
2023-02-04 00:02:09 +00:00
sieve-rs = { path = "/home/vagrant/code/sieve-rs" }
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"}
2023-01-27 15:47:05 +00:00
sha1 = "0.10"
sha2 = "0.10.6"
2023-01-17 17:55:13 +00:00
rayon = "1.5"
2022-12-15 18:31:34 +00:00
tracing = "0.1"
2023-01-25 16:48:26 +00:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
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-02-08 12:47:44 +00:00
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "postgres", "mysql", "mssql", "sqlite" ] }
2023-01-17 17:55:13 +00:00
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "blocking"] }
2023-01-13 17:42:38 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2023-01-17 17:55:13 +00:00
num_cpus = "1.15.0"
2023-01-24 18:19:51 +00:00
privdrop = "0.5.3"
2022-12-16 17:20:35 +00:00
[dev-dependencies]
2023-01-17 17:55:13 +00:00
mail-auth = { path = "/home/vagrant/code/mail-auth", features = ["test"] }
2022-12-16 17:20:35 +00:00
criterion = "0.4.0"
2023-01-26 14:37:04 +00:00
serial_test = "1.0.0"
2022-12-16 17:20:35 +00:00
[[bench]]
name = "hash"
harness = false
2023-01-26 14:37:04 +00:00
[features]
removeme = []