[package] name = "tests" version = "0.16.18" edition = "2024" [features] #default = ["sqlite", "postgres", "mysql", "rocks", "s3", "redis", "nats", "azure", "foundationdb"] #default = ["sqlite", "postgres", "mysql", "rocks", "s3", "redis", "foundationdb"] default = ["rocks", "sqlite"] sqlite = ["store/sqlite", "directory/sqlite"] foundationdb = ["store/foundation", "common/foundation"] postgres = ["store/postgres", "directory/postgres"] mysql = ["store/mysql", "directory/mysql"] rocks = ["store/rocks"] s3 = ["store/s3"] redis = ["store/redis", "coordinator/redis"] nats = ["coordinator/nats"] kafka = ["coordinator/kafka"] azure = ["store/azure"] [dev-dependencies] store = { path = "../crates/store", features = ["test_mode", "enterprise"] } nlp = { path = "../crates/nlp" } directory = { path = "../crates/directory", features = ["test_mode", "enterprise"] } coordinator = { path = "../crates/coordinator", features = ["test_mode", "enterprise"] } jmap = { path = "../crates/jmap", features = ["test_mode", "enterprise"] } jmap_proto = { path = "../crates/jmap-proto" } imap = { path = "../crates/imap", features = ["test_mode"] } imap_proto = { path = "../crates/imap-proto" } types = { path = "../crates/types" } dav = { path = "../crates/dav", features = ["test_mode"] } dav-proto = { path = "../crates/dav-proto", features = ["test_mode"] } calcard = { version = "0.3", features = ["rkyv"] } groupware = { path = "../crates/groupware", features = ["test_mode"] } http = { path = "../crates/http", features = ["test_mode", "enterprise"] } http_proto = { path = "../crates/http-proto", features = ["test_mode"] } services = { path = "../crates/services", features = ["test_mode", "enterprise"] } pop3 = { path = "../crates/pop3", features = ["test_mode"] } smtp = { path = "../crates/smtp", features = ["test_mode", "enterprise"] } common = { path = "../crates/common", features = ["test_mode", "enterprise"] } registry = { path = "../crates/registry" } email = { path = "../crates/email", features = ["test_mode", "enterprise"] } spam-filter = { path = "../crates/spam-filter", features = ["test_mode", "enterprise"] } migration = { path = "../crates/migration", features = ["test_mode", "enterprise"] } trc = { path = "../crates/trc", features = ["enterprise"] } managesieve = { path = "../crates/managesieve", features = ["test_mode", "enterprise"] } smtp-proto = { version = "0.2" } mail-auth = { version = "0.12", features = ["test"] } mail-parser = { version = "0.11", features = ["full_encoding", "rkyv"] } mail-builder = "0.4.4" sieve-rs = { version = "0.7", features = ["rkyv"] } utils = { path = "../crates/utils", features = ["test_mode"] } jmap-client = { version = "0.4", features = ["websockets", "debug", "async"] } tokio = { version = "1.53", features = ["full"] } tokio-rustls = { version = "0.26", default-features = false, features = ["aws_lc_rs", "tls12"] } rustls = { version = "0.23.43", default-features = false, features = ["std", "aws_lc_rs", "tls12"] } rustls-pemfile = "2.2" rustls-pki-types = { version = "1" } csv = "1.4" rayon = { version = "1.12.0" } flate2 = { version = "1.1.9", features = ["zlib"], default-features = false } serde = { version = "1.0", features = ["derive"]} serde_json = "1.0" reqwest = { version = "0.13", default-features = false, features = ["rustls", "multipart", "http2", "form"]} bytes = "1.12.1" futures = "0.3" ece = "2.3" hyper = { version = "1.11.0", features = ["server", "http1", "http2"] } hyper-util = { version = "0.1.20", features = ["tokio"] } http-body-util = "0.1.4" base64 = "0.23" ahash = { version = "0.8" } serial_test = "4.0.1" num_cpus = "1.17.0" async-trait = "0.1.91" chrono = "0.4" aws-lc-rs = { version = "1" } biscuit = "0.8.0" form_urlencoded = "1.2.2" rkyv = { version = "0.8.17", features = ["little_endian"] } compact_str = "0.10.0" quick-xml = "0.41" jmap-tools = { version = "0.1" } dns-update = { version = "0.5", features = ["test_provider"] } x509-parser = "0.18" rcgen = "0.14" sha2 = "0.11" time = "0.3" testcontainers = { version = "0.27", features = ["reusable-containers"] } rust-s3 = { version = "0.37", default-features = false, features = ["tokio-rustls-tls"] } [target.'cfg(not(any(target_env = "msvc", target_os = "freebsd")))'.dependencies] tikv-jemallocator = "0.7"