trifid/tfclient/Cargo.toml

43 lines
1.3 KiB
TOML
Raw Normal View History

2023-02-02 18:38:39 -05:00
[package]
name = "tfclient"
2023-09-26 09:14:42 -04:00
version = "0.2.5"
2023-02-02 18:38:39 -05:00
edition = "2021"
2023-03-20 11:20:39 -04:00
description = "An open-source reimplementation of a Defined Networking-compatible client"
2023-03-30 12:27:02 -04: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 18:38:39 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-07-25 21:05:02 -04:00
clap = { version = "4.1", features = ["derive"] }
2023-04-06 20:19:23 -04:00
trifid-pki = { version = "0.1", path = "../trifid-pki", features = ["serde_derive"] }
2023-07-25 21:05:02 -04:00
dirs = "5"
log = "0.4"
simple_logger = "4.1"
sha2 = "0.10"
hex = "0.4"
url = "2.3"
2023-09-26 09:14:42 -04:00
toml = "0.8.0"
2023-07-25 21:05:02 -04:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ctrlc = "3.2"
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"], default-features = false }
base64 = "0.21"
chrono = "0.4"
ipnet = "2.7"
base64-serde = "0.7"
2023-09-26 09:14:42 -04:00
dnapi-rs = { version = "0.2", path = "../dnapi-rs" }
2023-07-25 21:05:02 -04:00
serde_yaml = "0.9"
2023-09-26 09:14:42 -04:00
nebula-ffi = { version = "0.2", path = "../nebula-ffi", optional = true }
2023-06-25 23:07:47 -04:00
[package.metadata.deb]
maintainer = "c0repwn3r <core@e3t.cc>"
copyright = "e3team <admin@e3t.cc>"
license-file = "LICENSE.txt"
maintainer-scripts = "debian/"
2023-06-26 22:48:05 -04:00
systemd-units = { enable = false, unit-name = "tfclient@" }
[features]
default = ["linked-nebula"]
linked-nebula = ["nebula-ffi"]