mail-server/crates/cli/Cargo.toml

33 lines
1.1 KiB
TOML
Raw Normal View History

2023-07-04 00:48:43 +08:00
[package]
name = "stalwart-cli"
description = "Stalwart Mail Server CLI"
authors = ["Stalwart Labs Ltd. <hello@stalw.art>"]
license = "AGPL-3.0-only OR LicenseRef-SEL"
2023-07-04 00:48:43 +08:00
repository = "https://github.com/stalwartlabs/cli"
homepage = "https://github.com/stalwartlabs/cli"
2024-09-09 23:26:20 +08:00
version = "0.9.4"
2023-07-04 00:48:43 +08:00
edition = "2021"
readme = "README.md"
resolver = "2"
[dependencies]
2023-12-28 18:57:21 +08:00
jmap-client = { version = "0.3", features = ["async"] }
mail-parser = { version = "0.9", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "http2"]}
2023-07-04 00:48:43 +08:00
tokio = { version = "1.23", features = ["full"] }
num_cpus = "1.13.1"
clap = { version = "4.1.6", features = ["derive"] }
prettytable-rs = "0.10.0"
rpassword = "7.0"
indicatif = "0.17.0"
console = { version = "0.15", default-features = false, features = ["ansi-parsing"] }
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
csv = "1.1"
form_urlencoded = "1.1.0"
human-size = "0.4.2"
futures = "0.3.28"
pwhash = "1.0.0"
rand = "0.8.5"
2024-05-18 16:39:27 +08:00
mail-auth = { version = "0.4" }