fedimovies/mitra-cli/Cargo.toml
2023-02-18 23:12:36 +00:00

26 lines
546 B
TOML

[package]
name = "mitra-cli"
version = "1.13.1"
license = "AGPL-3.0"
edition = "2021"
rust-version = "1.56"
[[bin]]
name = "mitractl"
path = "src/main.rs"
[dependencies]
mitra-utils = { path = "../mitra-utils" }
mitra = { path = ".." }
# Used for catching errors
anyhow = "1.0.58"
# Used to build admin CLI tool
clap = { version = "3.2.18", default-features = false, features = ["std", "derive"] }
# Used for logging
log = "0.4.14"
# Async runtime
tokio = { version = "1.17.0", features = ["macros"] }
# Used to work with UUIDs
uuid = "1.1.2"