mail-server/tests/Cargo.toml

59 lines
2.4 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
2023-05-28 12:52:52 +00:00
[features]
default = ["sqlite"]
#default = ["foundationdb"]
2023-05-28 12:52:52 +00:00
sqlite = ["store/sqlite"]
foundationdb = ["store/foundation"]
2023-07-03 16:48:43 +00:00
[dependencies]
2023-04-11 14:45:07 +00:00
store = { path = "../crates/store", features = ["test_mode"] }
nlp = { path = "../crates/nlp" }
2023-06-02 09:03:30 +00:00
directory = { path = "../crates/directory" }
jmap = { path = "../crates/jmap", features = ["test_mode"] }
2023-04-19 15:09:37 +00:00
jmap_proto = { path = "../crates/jmap-proto" }
2023-06-25 18:00:45 +00:00
imap = { path = "../crates/imap", features = ["test_mode"] }
imap_proto = { path = "../crates/imap-proto" }
2023-05-17 17:35:36 +00:00
smtp = { path = "../crates/smtp", features = ["test_mode", "local_delivery"] }
managesieve = { path = "../crates/managesieve", features = ["test_mode"] }
2023-05-16 18:25:38 +00:00
smtp-proto = { git = "https://github.com/stalwartlabs/smtp-proto" }
2023-07-21 18:21:51 +00:00
mail-send = { git = "https://github.com/stalwartlabs/mail-send", default-features = false, features = ["cram-md5", "skip-ehlo"] }
2023-05-16 18:25:38 +00:00
mail-auth = { git = "https://github.com/stalwartlabs/mail-auth", features = ["test"] }
2023-09-05 16:23:52 +00:00
sieve-rs = { git = "https://github.com/stalwartlabs/sieve" }
2023-05-17 10:45:43 +00:00
utils = { path = "../crates/utils", features = ["test_mode"] }
2023-05-28 08:41:30 +00:00
jmap-client = { git = "https://github.com/stalwartlabs/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"] }
2023-05-16 18:25:38 +00:00
tokio-rustls = { version = "0.24.0"}
rustls = "0.21.0"
rustls-pemfile = "1.0"
2023-04-04 13:12:46 +00:00
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-08-02 13:48:15 +00:00
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-webpki-roots", "multipart"]}
2023-05-14 12:34:49 +00:00
bytes = "1.4.0"
futures = "0.3"
ece = "2.2"
2023-07-16 08:34:18 +00:00
hyper = { version = "1.0.0-rc.4", features = ["server", "http1", "http2"] }
hyper-util = { git = "https://github.com/hyperium/hyper-util" }
http-body-util = "0.1.0-rc.3"
base64 = "0.21"
2023-05-16 18:25:38 +00:00
dashmap = "5.4"
ahash = { version = "0.8" }
serial_test = "2.0.0"
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "mysql", "sqlite" ] }
2023-05-16 18:25:38 +00:00
num_cpus = "1.15.0"
async-trait = "0.1.68"
2023-05-20 18:50:24 +00:00
chrono = "0.4"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.5.0"