mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-10 09:32:19 +08:00
64 lines
2 KiB
TOML
64 lines
2 KiB
TOML
[package]
|
|
name = "jmap"
|
|
version = "0.9.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
store = { path = "../store" }
|
|
nlp = { path = "../nlp" }
|
|
jmap_proto = { path = "../jmap-proto" }
|
|
smtp = { path = "../smtp" }
|
|
utils = { path = "../utils" }
|
|
common = { path = "../common" }
|
|
directory = { path = "../directory" }
|
|
trc = { path = "../trc" }
|
|
smtp-proto = { version = "0.1" }
|
|
mail-parser = { version = "0.9", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
|
|
mail-builder = { version = "0.3", features = ["ludicrous_mode"] }
|
|
mail-send = { version = "0.4", default-features = false, features = ["cram-md5", "ring", "tls12"] }
|
|
mail-auth = { version = "0.4", features = ["generate"] }
|
|
sieve-rs = { version = "0.5" }
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
hyper = { version = "1.0.1", features = ["server", "http1", "http2"] }
|
|
hyper-util = { version = "0.1.1", features = ["tokio"] }
|
|
http-body-util = "0.1.0"
|
|
form_urlencoded = "1.1.0"
|
|
tokio = { version = "1.23", features = ["rt"] }
|
|
aes-gcm = "0.10.1"
|
|
aes-gcm-siv = "0.11.1"
|
|
bincode = "1.3.3"
|
|
form-data = { version = "0.5.0", features = ["sync"], default-features = false }
|
|
mime = "0.3.17"
|
|
futures-util = "0.3.28"
|
|
async-stream = "0.3.5"
|
|
base64 = "0.22"
|
|
p256 = { version = "0.13", features = ["ecdh"] }
|
|
hkdf = "0.12.3"
|
|
sha1 = "0.10"
|
|
sha2 = "0.10"
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "http2"]}
|
|
tokio-tungstenite = "0.23"
|
|
tungstenite = "0.23"
|
|
chrono = "0.4"
|
|
dashmap = "6.0"
|
|
aes = "0.8.3"
|
|
cbc = { version = "0.1.2", features = ["alloc"] }
|
|
sequoia-openpgp = { version = "1.16", default-features = false, features = ["crypto-rust", "allow-experimental-crypto", "allow-variable-time-crypto"] }
|
|
rand = "0.8.5"
|
|
pkcs8 = { version = "0.10.2", features = ["alloc", "std"] }
|
|
rasn = "0.10"
|
|
rasn-cms = "0.10"
|
|
rasn-pkix = "0.10"
|
|
rsa = "0.9.2"
|
|
async-trait = "0.1.68"
|
|
lz4_flex = { version = "0.11", default-features = false }
|
|
rev_lines = "0.3.0"
|
|
x509-parser = "0.16.0"
|
|
quick-xml = "0.35"
|
|
|
|
|
|
[features]
|
|
test_mode = []
|
|
enterprise = []
|