mail-server/crates/utils/Cargo.toml

39 lines
1.3 KiB
TOML
Raw Normal View History

2023-04-14 15:04:36 +08:00
[package]
name = "utils"
2023-11-01 19:08:24 +08:00
version = "0.4.2"
2023-04-14 15:04:36 +08:00
edition = "2021"
2023-04-20 00:55:37 +08:00
resolver = "2"
2023-04-14 15:04:36 +08:00
[dependencies]
2023-11-30 19:43:28 +08:00
rustls = { version = "0.21", features = ["tls12", "dangerous_configuration"]}
2023-12-02 22:52:05 +08:00
rustls-pemfile = "2.0"
2023-04-20 00:55:37 +08:00
tokio = { version = "1.23", features = ["net", "macros"] }
2023-04-18 18:43:45 +08:00
tokio-rustls = { version = "0.24.0"}
2023-04-14 15:04:36 +08:00
serde = { version = "1.0", features = ["derive"]}
2023-04-18 18:43:45 +08:00
tracing = "0.1"
2023-05-17 02:25:38 +08:00
mail-auth = { git = "https://github.com/stalwartlabs/mail-auth" }
smtp-proto = { git = "https://github.com/stalwartlabs/smtp-proto" }
2023-05-18 01:35:36 +08:00
mail-send = { git = "https://github.com/stalwartlabs/mail-send", default-features = false, features = ["cram-md5", "skip-ehlo"] }
2023-05-17 18:45:43 +08:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
2023-11-30 19:43:28 +08:00
tracing-opentelemetry = "0.22.0"
opentelemetry = { version = "0.21.0" }
opentelemetry_sdk = { version = "0.21.0", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.14.0", features = ["http-proto", "reqwest-client"] }
opentelemetry-semantic-conventions = { version = "0.13.0" }
dashmap = "5.4"
ahash = { version = "0.8" }
chrono = "0.4"
rand = "0.8.5"
2023-12-02 22:52:05 +08:00
webpki-roots = { version = "0.26"}
2023-04-20 00:55:37 +08:00
[target.'cfg(unix)'.dependencies]
privdrop = "0.5.3"
2023-09-16 01:39:03 +08:00
tracing-journald = "0.3"
2023-05-17 18:45:43 +08:00
[features]
test_mode = []
2023-10-07 14:53:35 +08:00
[dev-dependencies]
tokio = { version = "1.23", features = ["full"] }