mail-server/Cargo.toml

34 lines
774 B
TOML
Raw Normal View History

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" }
utils = { path = "crates/utils" }
tests = { path = "tests" }
2023-03-23 01:41:58 +08:00
2023-04-04 21:12:46 +08:00
[workspace]
members = [
2023-04-14 15:04:36 +08:00
"crates/jmap",
"crates/jmap-proto",
2023-04-04 21:12:46 +08:00
"crates/store",
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",
]