mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2025-01-08 00:37:45 +08:00
23 lines
981 B
TOML
23 lines
981 B
TOML
[package]
|
|
name = "tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
store = { path = "../crates/store", features = ["test_mode"] }
|
|
jmap = { path = "../crates/jmap", features = ["test_mode"] }
|
|
jmap_proto = { path = "../crates/jmap-proto" }
|
|
utils = { path = "../crates/utils" }
|
|
#jmap-client = { git = "https://github.com/stalwartlabs/jmap-client", features = ["websockets", "debug", "async"] }
|
|
jmap-client = { path = "/home/vagrant/code/jmap-client", features = ["websockets", "debug", "async"] }
|
|
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
|
|
tokio = { version = "1.23", features = ["full"] }
|
|
csv = "1.1"
|
|
rayon = { version = "1.5.1" }
|
|
flate2 = { version = "1.0.17", features = ["zlib"], default-features = false }
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|