mail-server/crates/managesieve/Cargo.toml
2023-11-01 12:08:24 +01:00

31 lines
895 B
TOML

[package]
name = "managesieve"
version = "0.4.2"
edition = "2021"
resolver = "2"
[dependencies]
imap_proto = { path = "../imap-proto" }
imap = { path = "../imap" }
jmap = { path = "../jmap" }
jmap_proto = { path = "../jmap-proto" }
directory = { path = "../directory" }
store = { path = "../store" }
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"] }
sieve-rs = { git = "https://github.com/stalwartlabs/sieve" }
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"
bincode = "1.3.3"
[features]
test_mode = []