mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-13 04:39:02 +08:00
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "stalwart-cli"
|
|
description = "Stalwart Mail Server CLI"
|
|
authors = ["Stalwart Labs Ltd. <hello@stalw.art>"]
|
|
license = "AGPL-3.0-only OR LicenseRef-SEL"
|
|
repository = "https://github.com/stalwartlabs/cli"
|
|
homepage = "https://github.com/stalwartlabs/cli"
|
|
version = "0.8.4"
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
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"]}
|
|
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"
|
|
mail-auth = { version = "0.4" }
|