2023-04-20 00:55:37 +08: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-23 01:41:58 +08:00
|
|
|
|
2023-04-20 00:55:37 +08: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-18 01:35:36 +08:00
|
|
|
smtp = { path = "crates/smtp", features = ["local_delivery"] }
|
2023-05-31 01:27:54 +08:00
|
|
|
directory = { path = "crates/directory" }
|
2023-04-20 00:55:37 +08:00
|
|
|
utils = { path = "crates/utils" }
|
2023-05-17 18:45:43 +08:00
|
|
|
tokio = { version = "1.23", features = ["full"] }
|
|
|
|
tracing = "0.1"
|
2023-03-23 01:41:58 +08:00
|
|
|
|
2023-05-28 20:52:52 +08:00
|
|
|
[features]
|
|
|
|
default = ["sqlite"]
|
|
|
|
sqlite = ["store/sqlite"]
|
|
|
|
foundationdb = ["store/foundation"]
|
|
|
|
|
2023-04-04 21:12:46 +08:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2023-04-14 15:04:36 +08:00
|
|
|
"crates/jmap",
|
|
|
|
"crates/jmap-proto",
|
2023-06-14 03:52:13 +08:00
|
|
|
"crates/imap",
|
|
|
|
"crates/imap-proto",
|
2023-05-17 02:25:38 +08:00
|
|
|
"crates/smtp",
|
2023-04-04 21:12:46 +08:00
|
|
|
"crates/store",
|
2023-05-31 01:27:54 +08:00
|
|
|
"crates/directory",
|
2023-04-14 15:04:36 +08:00
|
|
|
"crates/utils",
|
2023-04-20 00:55:37 +08:00
|
|
|
"crates/maybe-async",
|
2023-04-04 21:12:46 +08:00
|
|
|
"tests",
|
|
|
|
]
|