trifid/tfcli/Cargo.toml

23 lines
718 B
TOML
Raw Normal View History

2023-06-15 20:49:06 -04:00
[package]
name = "tfcli"
2023-07-31 01:34:17 -04:00
version = "0.1.5"
2023-06-15 20:49:06 -04:00
edition = "2021"
2023-06-21 21:08:28 -04:00
description = "Command-line client for managing trifid-api"
license = "GPL-3.0-or-later"
documentation = "https://git.e3t.cc/~core/trifid"
homepage = "https://git.e3t.cc/~core/trifid"
repository = "https://git.e3t.cc/~core/trifid"
2023-06-15 20:49:06 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
2023-07-25 21:05:02 -04:00
url = "2.3"
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
2023-06-15 20:49:06 -04:00
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
2023-07-25 21:05:02 -04:00
dirs = "5"
qr2term = "0.3"
ipnet = "2.7"
serde_json = "1"