mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-15 22:05:55 +08:00
31 lines
928 B
TOML
31 lines
928 B
TOML
[package]
|
|
name = "stalwart-install"
|
|
description = "Stalwart Mail Server installer"
|
|
authors = ["Stalwart Labs Ltd. <hello@stalw.art>"]
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/stalwartlabs/mail-server"
|
|
homepage = "https://github.com/stalwartlabs/mail-server"
|
|
version = "0.3.8"
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-webpki-roots", "blocking"] }
|
|
rusqlite = { version = "0.29.0", features = ["bundled"] }
|
|
rpassword = "7.0"
|
|
indicatif = "0.17.0"
|
|
dialoguer = "0.10.4"
|
|
openssl = { version = "0.10.55", features = ["vendored"] }
|
|
base64 = "0.21.2"
|
|
pwhash = "1.0.0"
|
|
rand = "0.8.5"
|
|
clap = { version = "4.1.6", features = ["derive"] }
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
libc = "0.2.147"
|
|
flate2 = "1.0.26"
|
|
tar = "0.4.38"
|
|
|
|
[target.'cfg(target_env = "msvc")'.dependencies]
|
|
zip-extract = "0.1.2"
|