mail-server/crates/imap/Cargo.toml

32 lines
946 B
TOML
Raw Normal View History

2023-06-13 19:52:13 +00:00
[package]
name = "imap"
2024-11-07 15:32:54 +00:00
version = "0.10.6"
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" }
2024-07-11 16:44:51 +00:00
trc = { path = "../trc" }
2023-06-22 17:29:39 +00:00
store = { path = "../store" }
2024-03-24 18:20:36 +00:00
common = { path = "../common" }
nlp = { path = "../nlp" }
2023-06-21 17:26:28 +00:00
utils = { path = "../utils" }
2023-12-28 10:57:21 +00:00
mail-parser = { version = "0.9", features = ["full_encoding", "ludicrous_mode"] }
2024-07-03 13:14:50 +00:00
mail-send = { version = "0.4", default-features = false, features = ["cram-md5", "ring", "tls12"] }
rustls = { version = "0.23.5", default-features = false, features = ["std", "ring", "tls12"] }
2023-12-03 18:40:16 +00:00
rustls-pemfile = "2.0"
2023-06-21 17:26:28 +00:00
tokio = { version = "1.23", features = ["full"] }
2024-07-03 13:14:50 +00:00
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "tls12"] }
2023-06-21 17:26:28 +00:00
parking_lot = "0.12"
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 = "6.0"
rand = "0.8.5"
2024-07-25 18:35:13 +00:00
2023-06-25 18:00:45 +00:00
[features]
test_mode = []