mirror of
https://github.com/stalwartlabs/stalwart.git
synced 2026-08-20 08:01:10 +00:00
81 lines
2.8 KiB
TOML
81 lines
2.8 KiB
TOML
[package]
|
|
name = "stalwart"
|
|
description = "Stalwart Mail and Collaboration Server"
|
|
authors = [ "Stalwart Labs LLC <hello@stalw.art>"]
|
|
repository = "https://github.com/stalwartlabs/stalwart"
|
|
homepage = "https://stalw.art"
|
|
keywords = ["imap", "jmap", "smtp", "email", "mail", "webdav", "server"]
|
|
categories = ["email"]
|
|
license = "AGPL-3.0-only OR LicenseRef-SEL"
|
|
version = "0.16.18"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "stalwart"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
store = { path = "../store" }
|
|
coordinator = { path = "../coordinator" }
|
|
jmap = { path = "../jmap" }
|
|
types = { path = "../types" }
|
|
smtp = { path = "../smtp" }
|
|
smtp-proto = { version = "0.2", features = ["rkyv", "serde"] }
|
|
imap = { path = "../imap" }
|
|
pop3 = { path = "../pop3" }
|
|
spam-filter = { path = "../spam-filter" }
|
|
managesieve = { path = "../managesieve" }
|
|
common = { path = "../common" }
|
|
email = { path = "../email" }
|
|
directory = { path = "../directory" }
|
|
http = { path = "../http" }
|
|
dav = { path = "../dav" }
|
|
groupware = { path = "../groupware" }
|
|
services = { path = "../services" }
|
|
trc = { path = "../trc" }
|
|
utils = { path = "../utils" }
|
|
registry = { path = "../registry" }
|
|
http_proto = { path = "../http-proto" }
|
|
migration = { path = "../migration" }
|
|
tokio = { version = "1.53", features = ["full"] }
|
|
rustls = { version = "0.23.43", default-features = false, features = ["std", "aws_lc_rs", "tls12"] }
|
|
|
|
[target.'cfg(not(any(target_env = "msvc", target_os = "freebsd")))'.dependencies]
|
|
tikv-jemallocator = "0.7"
|
|
|
|
[features]
|
|
#default = ["sqlite", "postgres", "mysql", "rocks", "s3", "redis", "azure", "nats", "enterprise", "zenoh", "kafka"]
|
|
#default = ["sqlite", "postgres", "mysql", "rocks", "s3", "redis", "azure", "nats", "enterprise"]
|
|
default = ["rocks", "enterprise"]
|
|
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"]
|
|
azure = ["store/azure"]
|
|
nats = ["coordinator/nats"]
|
|
zenoh = ["coordinator/zenoh"]
|
|
kafka = ["coordinator/kafka"]
|
|
enterprise = [ "jmap/enterprise",
|
|
"smtp/enterprise",
|
|
"common/enterprise",
|
|
"store/enterprise",
|
|
"managesieve/enterprise",
|
|
"directory/enterprise",
|
|
"email/enterprise",
|
|
"spam-filter/enterprise",
|
|
"http/enterprise",
|
|
"dav/enterprise",
|
|
"groupware/enterprise",
|
|
"trc/enterprise",
|
|
"services/enterprise",
|
|
"migration/enterprise" ]
|
|
dev_mode = [ "common/dev_mode",
|
|
"trc/dev_mode",
|
|
"dav/dev_mode",
|
|
"http/dev_mode",
|
|
"http_proto/dev_mode",
|
|
"jmap/dev_mode" ]
|