mail-server/crates/jmap/Cargo.toml

59 lines
2 KiB
TOML
Raw Normal View History

2023-04-04 21:12:46 +08:00
[package]
2023-04-14 15:04:36 +08:00
name = "jmap"
2023-10-07 14:53:35 +08:00
version = "0.3.9"
2023-04-04 21:12:46 +08:00
edition = "2021"
2023-04-20 00:55:37 +08:00
resolver = "2"
2023-04-04 21:12:46 +08:00
[dependencies]
2023-04-06 00:05:21 +08:00
store = { path = "../store" }
nlp = { path = "../nlp" }
2023-04-14 15:04:36 +08:00
jmap_proto = { path = "../jmap-proto" }
2023-05-21 02:50:24 +08:00
smtp = { path = "../smtp" }
2023-05-31 01:27:54 +08:00
utils = { path = "../utils" }
directory = { path = "../directory" }
2023-05-23 21:49:21 +08:00
smtp-proto = { git = "https://github.com/stalwartlabs/smtp-proto" }
2023-04-04 21:12:46 +08:00
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
mail-builder = { git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] }
2023-07-22 02:21:51 +08:00
mail-send = { git = "https://github.com/stalwartlabs/mail-send", default-features = false, features = ["cram-md5", "skip-ehlo"] }
2023-09-06 00:23:52 +08:00
sieve-rs = { git = "https://github.com/stalwartlabs/sieve" }
2023-04-04 21:12:46 +08:00
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
2023-07-16 16:34:18 +08:00
hyper = { version = "1.0.0-rc.4", features = ["server", "http1", "http2"] }
hyper-util = { git = "https://github.com/hyperium/hyper-util" }
http-body-util = "0.1.0-rc.3"
2023-04-18 18:43:45 +08:00
form_urlencoded = "1.1.0"
tracing = "0.1"
tokio = { version = "1.23", features = ["rt"] }
aes-gcm = "0.10.1"
2023-05-10 01:39:52 +08:00
aes-gcm-siv = "0.11.1"
2023-05-12 22:41:10 +08:00
bincode = "1.3.3"
form-data = { version = "0.4.2", features = ["sync"], default-features = false }
mime = "0.3.17"
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "mysql", "sqlite" ] }
futures-util = "0.3.28"
async-stream = "0.3.5"
base64 = "0.21"
p256 = { version = "0.13", features = ["ecdh"] }
hkdf = "0.12.3"
sha2 = "0.10.1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-webpki-roots"]}
2023-08-02 00:39:33 +08:00
tokio-tungstenite = "0.20.0"
tungstenite = "0.20.0"
chrono = "0.4"
dashmap = "5.4"
2023-08-02 00:39:33 +08:00
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"] }
2023-08-02 00:39:33 +08:00
rand = "0.8.5"
2023-10-07 14:53:35 +08:00
rasn = "0.10"
rasn-cms = "0.10"
rasn-pkix = "0.10"
2023-08-02 00:39:33 +08:00
rsa = "0.9.2"
async-trait = "0.1.68"
[dev-dependencies]
ece = "2.2"
2023-04-28 16:35:53 +08:00
[features]
test_mode = []