2023-06-16 00:49:06 +00:00
|
|
|
[package]
|
|
|
|
name = "tfcli"
|
2023-06-26 16:38:19 +00:00
|
|
|
version = "0.1.2"
|
2023-06-16 00:49:06 +00:00
|
|
|
edition = "2021"
|
2023-06-22 01:08:28 +00: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-16 00:49:06 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
|
|
url = "2.3.1"
|
|
|
|
reqwest = { version = "0.11.17", features = ["json"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
dirs = "5.0.1"
|
|
|
|
qr2term = "0.3.1"
|
2023-06-16 02:00:09 +00:00
|
|
|
ipnet = "2.7.2"
|
2023-06-24 00:10:19 +00:00
|
|
|
serde_json = "1.0.96"
|
2023-06-26 16:38:19 +00:00
|
|
|
openssl-sys = { version = "0.9.83", features = ["vendored"] }
|