mail-server/Cargo.toml

24 lines
518 B
TOML
Raw Normal View History

2023-04-11 14:45:07 +00: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-22 17:41:58 +00:00
2023-04-11 14:45:07 +00:00
#[lib]
#path = "crates/core/src/lib.rs"
2023-03-22 17:41:58 +00:00
2023-04-04 13:12:46 +00:00
[workspace]
members = [
"crates/protocol",
"crates/store",
"crates/core",
"tests",
]