mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-15 05:44:26 +08:00
76 lines
2.4 KiB
TOML
76 lines
2.4 KiB
TOML
[package]
|
|
name = "common"
|
|
version = "0.10.1"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
utils = { path = "../utils" }
|
|
nlp = { path = "../nlp" }
|
|
store = { path = "../store" }
|
|
trc = { path = "../trc" }
|
|
directory = { path = "../directory" }
|
|
jmap_proto = { path = "../jmap-proto" }
|
|
imap_proto = { path = "../imap-proto" }
|
|
sieve-rs = { version = "0.5" }
|
|
mail-parser = { version = "0.9", features = ["full_encoding", "ludicrous_mode"] }
|
|
mail-builder = { version = "0.3", features = ["ludicrous_mode"] }
|
|
mail-auth = { version = "0.5" }
|
|
mail-send = { version = "0.4", default-features = false, features = ["cram-md5", "ring", "tls12"] }
|
|
smtp-proto = { version = "0.1", features = ["serde_support"] }
|
|
dns-update = { version = "0.1" }
|
|
ahash = { version = "0.8.2", features = ["serde"] }
|
|
parking_lot = "0.12.1"
|
|
regex = "1.7.0"
|
|
proxy-header = { version = "0.1.0", features = ["tokio"] }
|
|
arc-swap = "1.6.0"
|
|
rustls = { version = "0.23.5", default-features = false, features = ["std", "ring", "tls12"] }
|
|
rustls-pemfile = "2.0"
|
|
rustls-pki-types = { version = "1" }
|
|
ring = { version = "0.17" }
|
|
tokio = { version = "1.23", features = ["net", "macros"] }
|
|
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "tls12"] }
|
|
futures = "0.3"
|
|
rcgen = "0.12"
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "http2", "stream"]}
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
base64 = "0.22"
|
|
x509-parser = "0.16.0"
|
|
pem = "3.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
hyper = { version = "1.0.1", features = ["server", "http1", "http2"] }
|
|
opentelemetry = { version = "0.25" }
|
|
opentelemetry_sdk = { version = "0.25" }
|
|
opentelemetry-otlp = { version = "0.25", features = ["http-proto", "reqwest-client"] }
|
|
opentelemetry-semantic-conventions = { version = "0.25.0" }
|
|
prometheus = { version = "0.13.4", default-features = false }
|
|
imagesize = "0.13"
|
|
sha1 = "0.10"
|
|
sha2 = "0.10.6"
|
|
md5 = "0.7.0"
|
|
whatlang = "0.16"
|
|
idna = "1.0"
|
|
decancer = "3.0.1"
|
|
unicode-security = "0.1.0"
|
|
infer = "0.16"
|
|
bincode = "1.3.1"
|
|
hostname = "0.4.0"
|
|
zip = "2.1"
|
|
pwhash = "1.0.0"
|
|
xxhash-rust = { version = "0.8.5", features = ["xxh3"] }
|
|
psl = "2"
|
|
dashmap = "6.0"
|
|
aes-gcm-siv = "0.11.1"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
privdrop = "0.5.3"
|
|
libc = "0.2.126"
|
|
|
|
[features]
|
|
test_mode = []
|
|
enterprise = []
|
|
foundation = []
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.23", features = ["full"] }
|