2023-04-04 21:12:46 +08:00
|
|
|
[package]
|
2023-04-14 15:04:36 +08:00
|
|
|
name = "jmap"
|
2024-08-08 18:50:00 +08:00
|
|
|
version = "0.9.1"
|
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" }
|
2023-10-11 00:58:38 +08:00
|
|
|
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" }
|
2024-03-25 02:20:36 +08:00
|
|
|
common = { path = "../common" }
|
2023-05-31 01:27:54 +08:00
|
|
|
directory = { path = "../directory" }
|
2024-07-12 00:44:51 +08:00
|
|
|
trc = { path = "../trc" }
|
2023-12-28 18:57:21 +08:00
|
|
|
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"] }
|
2024-07-03 21:14:50 +08:00
|
|
|
mail-send = { version = "0.4", default-features = false, features = ["cram-md5", "ring", "tls12"] }
|
2024-05-18 16:39:27 +08:00
|
|
|
mail-auth = { version = "0.4", features = ["generate"] }
|
2024-03-29 00:21:32 +08:00
|
|
|
sieve-rs = { version = "0.5" }
|
2023-04-04 21:12:46 +08:00
|
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
|
|
serde_json = "1.0"
|
2023-11-27 17:06:48 +08:00
|
|
|
hyper = { version = "1.0.1", features = ["server", "http1", "http2"] }
|
|
|
|
hyper-util = { version = "0.1.1", features = ["tokio"] }
|
|
|
|
http-body-util = "0.1.0"
|
2023-04-18 18:43:45 +08:00
|
|
|
form_urlencoded = "1.1.0"
|
|
|
|
tokio = { version = "1.23", features = ["rt"] }
|
2023-05-15 23:21:09 +08:00
|
|
|
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"
|
2023-11-27 17:06:48 +08:00
|
|
|
form-data = { version = "0.5.0", features = ["sync"], default-features = false }
|
2023-05-12 22:41:10 +08:00
|
|
|
mime = "0.3.17"
|
2023-05-15 23:21:09 +08:00
|
|
|
futures-util = "0.3.28"
|
|
|
|
async-stream = "0.3.5"
|
2024-03-23 03:16:02 +08:00
|
|
|
base64 = "0.22"
|
2023-05-15 23:21:09 +08:00
|
|
|
p256 = { version = "0.13", features = ["ecdh"] }
|
|
|
|
hkdf = "0.12.3"
|
2023-11-01 19:08:24 +08:00
|
|
|
sha1 = "0.10"
|
|
|
|
sha2 = "0.10"
|
2024-03-27 18:35:02 +08:00
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "http2"]}
|
2024-06-28 18:12:51 +08:00
|
|
|
tokio-tungstenite = "0.23"
|
|
|
|
tungstenite = "0.23"
|
2023-05-25 23:37:21 +08:00
|
|
|
chrono = "0.4"
|
2024-06-28 18:12:51 +08:00
|
|
|
dashmap = "6.0"
|
2023-08-02 00:39:33 +08:00
|
|
|
aes = "0.8.3"
|
|
|
|
cbc = { version = "0.1.2", features = ["alloc"] }
|
2023-09-16 01:29:58 +08:00
|
|
|
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"
|
2024-04-08 17:09:02 +08:00
|
|
|
pkcs8 = { version = "0.10.2", features = ["alloc", "std"] }
|
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"
|
2024-03-03 01:02:30 +08:00
|
|
|
lz4_flex = { version = "0.11", default-features = false }
|
2024-04-07 23:20:50 +08:00
|
|
|
rev_lines = "0.3.0"
|
2024-05-07 16:36:57 +08:00
|
|
|
x509-parser = "0.16.0"
|
2024-07-01 23:51:14 +08:00
|
|
|
quick-xml = "0.35"
|
2024-07-26 02:35:13 +08:00
|
|
|
|
2023-05-15 23:21:09 +08:00
|
|
|
|
2023-04-28 16:35:53 +08:00
|
|
|
[features]
|
|
|
|
test_mode = []
|
2024-07-09 15:47:51 +08:00
|
|
|
enterprise = []
|