mail-server/Cargo.toml

25 lines
540 B
TOML
Raw Normal View History

2023-04-11 22:45:07 +08:00
#[package]
#name = "stalwart-jmap"
#description = "Stalwart JMAP Server"
#authors = [ "Stalwart Labs Ltd. <hello@stalw.art>"]
#repository = "https://github.com/stalwartlabs/jmap-server"
#homepage = "https://stalw.art/jmap"
#keywords = ["jmap", "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-11 22:45:07 +08:00
#[lib]
#path = "crates/core/src/lib.rs"
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-04 21:12:46 +08:00
"tests",
]