mail-server/Cargo.toml

42 lines
990 B
TOML
Raw Normal View History

2023-04-19 16:55:37 +00:00
[package]
name = "mail-server"
description = "Stalwart Mail Server"
authors = [ "Stalwart Labs Ltd. <hello@stalw.art>"]
repository = "https://github.com/stalwartlabs/jmap-server"
homepage = "https://stalw.art"
keywords = ["imap", "jmap", "smtp", "email", "mail", "server"]
categories = ["email"]
license = "AGPL-3.0-only"
version = "0.3.0"
edition = "2021"
resolver = "2"
2023-03-22 17:41:58 +00:00
2023-04-19 16:55:37 +00:00
[[bin]]
name = "stalwart-mail"
path = "crates/main/src/main.rs"
[dependencies]
store = { path = "crates/store" }
jmap = { path = "crates/jmap" }
jmap_proto = { path = "crates/jmap-proto" }
2023-05-17 17:35:36 +00:00
smtp = { path = "crates/smtp", features = ["local_delivery"] }
2023-04-19 16:55:37 +00:00
utils = { path = "crates/utils" }
2023-05-17 10:45:43 +00:00
tokio = { version = "1.23", features = ["full"] }
tracing = "0.1"
2023-03-22 17:41:58 +00:00
2023-05-28 12:52:52 +00:00
[features]
default = ["sqlite"]
sqlite = ["store/sqlite"]
foundationdb = ["store/foundation"]
2023-04-04 13:12:46 +00:00
[workspace]
members = [
2023-04-14 07:04:36 +00:00
"crates/jmap",
"crates/jmap-proto",
2023-05-16 18:25:38 +00:00
"crates/smtp",
2023-04-04 13:12:46 +00:00
"crates/store",
2023-04-14 07:04:36 +00:00
"crates/utils",
2023-04-19 16:55:37 +00:00
"crates/maybe-async",
2023-04-04 13:12:46 +00:00
"tests",
]