mail-server/crates/imap/Cargo.toml

29 lines
821 B
TOML
Raw Normal View History

2023-06-13 19:52:13 +00:00
[package]
name = "imap"
2023-10-07 06:53:35 +00:00
version = "0.3.9"
2023-06-13 19:52:13 +00:00
edition = "2021"
resolver = "2"
[dependencies]
2023-06-21 17:26:28 +00:00
imap_proto = { path = "../imap-proto" }
jmap = { path = "../jmap" }
2023-06-22 17:29:39 +00:00
jmap_proto = { path = "../jmap-proto" }
2023-06-21 17:26:28 +00:00
directory = { path = "../directory" }
2023-06-22 17:29:39 +00:00
store = { path = "../store" }
nlp = { path = "../nlp" }
2023-06-21 17:26:28 +00:00
utils = { path = "../utils" }
2023-06-22 17:29:39 +00:00
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", features = ["full_encoding", "ludicrous_mode"] }
mail-send = { git = "https://github.com/stalwartlabs/mail-send", default-features = false, features = ["cram-md5", "skip-ehlo"] }
2023-06-21 17:26:28 +00:00
rustls = "0.21.0"
rustls-pemfile = "1.0"
tokio = { version = "1.23", features = ["full"] }
tokio-rustls = { version = "0.24.0"}
parking_lot = "0.12"
tracing = "0.1"
2023-06-22 17:29:39 +00:00
ahash = { version = "0.8" }
2023-06-25 18:00:45 +00:00
md5 = "0.7.0"
dashmap = "5.4"
2023-06-25 18:00:45 +00:00
[features]
test_mode = []