trifid/tfclient/Cargo.toml

42 lines
1.3 KiB
TOML
Raw Normal View History

2023-02-02 23:38:39 +00:00
[package]
name = "tfclient"
2023-05-14 17:47:49 +00:00
version = "0.1.8"
2023-02-02 23:38:39 +00:00
edition = "2021"
2023-03-20 15:20:39 +00:00
description = "An open-source reimplementation of a Defined Networking-compatible client"
2023-03-30 16:27:02 +00:00
license = "GPL-3.0-or-later"
documentation = "https://man.e3t.cc/~core/trifid-docs"
homepage = "https://man.e3t.cc/~core/trifid-docs"
repository = "https://git.e3t.cc/~core/trifid"
2023-02-02 23:38:39 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-03-20 15:20:39 +00:00
clap = { version = "4.1.10", features = ["derive"] }
2023-04-07 00:19:23 +00:00
trifid-pki = { version = "0.1", path = "../trifid-pki", features = ["serde_derive"] }
dirs = "5.0.0"
log = "0.4.17"
simple_logger = "4.1.0"
sha2 = "0.10.6"
hex = "0.4.3"
url = "2.3.1"
toml = "0.7.3"
serde = { version = "1.0.158", features = ["derive"] }
2023-03-22 18:34:06 +00:00
serde_json = "1.0.94"
ctrlc = "3.2.5"
2023-03-28 16:16:00 +00:00
reqwest = { version = "0.11.16", features = ["blocking"] }
base64 = "0.21.0"
chrono = "0.4.24"
2023-03-28 17:10:11 +00:00
ipnet = "2.7.1"
2023-03-29 13:37:03 +00:00
base64-serde = "0.7.0"
2023-04-07 00:19:23 +00:00
dnapi-rs = { version = "0.1", path = "../dnapi-rs" }
2023-03-30 14:43:09 +00:00
serde_yaml = "0.9.19"
2023-03-31 00:05:06 +00:00
openssl-sys = { version = "0.9.83", features = ["vendored"] }
2023-03-20 15:20:39 +00:00
[build-dependencies]
serde = { version = "1.0.157", features = ["derive"] }
reqwest = { version = "0.11.14", features = ["blocking", "json"] }
flate2 = "1.0.25"
tar = "0.4.38"
hex = "0.4.3"
tempfile = "3.4.0"
2023-04-07 00:23:05 +00:00
sha2 = "0.10.6"