mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2025-09-07 04:24:15 +08:00
64 lines
2.1 KiB
TOML
64 lines
2.1 KiB
TOML
[package]
|
|
name = "smtp"
|
|
description = "Stalwart SMTP Server"
|
|
authors = [ "Stalwart Labs LLC <hello@stalw.art>"]
|
|
repository = "https://github.com/stalwartlabs/smtp-server"
|
|
homepage = "https://stalw.art/smtp"
|
|
keywords = ["smtp", "email", "mail", "server"]
|
|
categories = ["email"]
|
|
license = "AGPL-3.0-only OR LicenseRef-SEL"
|
|
version = "0.13.0"
|
|
edition = "2024"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
store = { path = "../store" }
|
|
utils = { path = "../utils" }
|
|
nlp = { path = "../nlp" }
|
|
directory = { path = "../directory" }
|
|
common = { path = "../common" }
|
|
email = { path = "../email" }
|
|
spam-filter = { path = "../spam-filter" }
|
|
trc = { path = "../trc" }
|
|
mail-auth = { version = "0.7.1", features = ["rkyv"] }
|
|
mail-send = { version = "0.5", default-features = false, features = ["cram-md5", "ring", "tls12"] }
|
|
mail-parser = { version = "0.11", features = ["full_encoding"] }
|
|
mail-builder = { version = "0.4" }
|
|
smtp-proto = { version = "0.1.6", features = ["rkyv", "serde"] }
|
|
sieve-rs = { version = "0.7", features = ["rkyv"] }
|
|
ahash = { version = "0.8" }
|
|
rustls = { version = "0.23.5", default-features = false, features = ["std", "ring", "tls12"] }
|
|
rustls-pemfile = "2.0"
|
|
rustls-pki-types = { version = "1" }
|
|
tokio = { version = "1.45", features = ["full"] }
|
|
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "tls12"] }
|
|
webpki-roots = { version = "1.0"}
|
|
hyper = { version = "1.0.1", features = ["server", "http1", "http2"] }
|
|
hyper-util = { version = "0.1.1", features = ["tokio"] }
|
|
http-body-util = "0.1.0"
|
|
form_urlencoded = "1.1.0"
|
|
sha1 = "0.10"
|
|
sha2 = "0.10.6"
|
|
md5 = "0.7.0"
|
|
rayon = "1.5"
|
|
parking_lot = "0.12"
|
|
regex = "1.7.0"
|
|
blake3 = "1.3"
|
|
lru-cache = "0.1.2"
|
|
rand = "0.9.0"
|
|
x509-parser = "0.17.0"
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "http2"] }
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_json = "1.0"
|
|
num_cpus = "1.15.0"
|
|
chrono = "0.4"
|
|
rkyv = { version = "0.8.10", features = ["little_endian"] }
|
|
compact_str = "0.9.0"
|
|
|
|
[features]
|
|
test_mode = []
|
|
enterprise = []
|
|
|
|
#[[bench]]
|
|
#name = "hash"
|
|
#harness = false
|