mail-server/crates/utils/Cargo.toml

37 lines
1.1 KiB
TOML
Raw Normal View History

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