[package] name = "imap" version = "0.3.9" edition = "2021" resolver = "2" [dependencies] imap_proto = { path = "../imap-proto" } jmap = { path = "../jmap" } jmap_proto = { path = "../jmap-proto" } directory = { path = "../directory" } store = { path = "../store" } nlp = { path = "../nlp" } utils = { path = "../utils" } 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"] } 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" ahash = { version = "0.8" } md5 = "0.7.0" dashmap = "5.4" [features] test_mode = []