mail-server/crates/jmap/Cargo.toml

25 lines
850 B
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-04-04 21:12:46 +08:00
version = "0.1.0"
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-04-14 15:04:36 +08:00
jmap_proto = { path = "../jmap-proto" }
utils = { path = "../utils" }
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"] }
mail-send = { git = "https://github.com/stalwartlabs/mail-send" }
2023-04-20 00:55:37 +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-04-18 18:43:45 +08:00
hyper = { version = "1.0.0-rc.3", features = ["server", "http1", "http2"] }
http-body-util = "0.1.0-rc.2"
form_urlencoded = "1.1.0"
tracing = "0.1"
tokio = { version = "1.23", features = ["rt"] }
2023-04-28 16:35:53 +08:00
[features]
test_mode = []