mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-15 13:54:41 +08:00
24 lines
850 B
TOML
24 lines
850 B
TOML
[package]
|
|
name = "jmap"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
store = { path = "../store" }
|
|
jmap_proto = { path = "../jmap-proto" }
|
|
utils = { path = "../utils" }
|
|
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" }
|
|
sieve-rs = { git = "https://github.com/stalwartlabs/sieve" }
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
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"] }
|
|
|
|
[features]
|
|
test_mode = []
|