mail-server/tests/Cargo.toml

26 lines
1.1 KiB
TOML
Raw Normal View History

2023-04-04 13:12:46 +00:00
[package]
name = "tests"
version = "0.1.0"
edition = "2021"
2023-04-19 15:09:37 +00:00
resolver = "2"
2023-04-04 13:12:46 +00:00
[dependencies]
2023-04-11 14:45:07 +00:00
store = { path = "../crates/store", features = ["test_mode"] }
2023-04-28 08:35:53 +00:00
jmap = { path = "../crates/jmap", features = ["test_mode"] }
2023-04-19 15:09:37 +00:00
jmap_proto = { path = "../crates/jmap-proto" }
2023-04-14 07:04:36 +00:00
utils = { path = "../crates/utils" }
2023-04-28 08:35:53 +00:00
#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"] }
2023-04-19 15:09:37 +00:00
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
2023-04-04 13:12:46 +00:00
tokio = { version = "1.23", features = ["full"] }
csv = "1.1"
rayon = { version = "1.5.1" }
flate2 = { version = "1.0.17", features = ["zlib"], default-features = false }
2023-04-19 15:09:37 +00:00
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2023-05-14 12:34:49 +00:00
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"]}
bytes = "1.4.0"
2023-04-04 13:12:46 +00:00