trifid/tfclient/Cargo.toml

45 lines
1.3 KiB
TOML

[package]
name = "tfclient"
version = "0.3.0"
edition = "2021"
description = "An open-source reimplementation of a Defined Networking-compatible client"
license = "GPL-3.0-or-later"
documentation = "https://next.trifid.e3t.cc"
homepage = "https://next.trifid.e3t.cc"
repository = "https://git.e3t.cc/core/trifid"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.1", features = ["derive"] }
trifid-pki = { version = "0.1", path = "../trifid-pki", features = ["serde_derive"] }
dirs = "5"
log = "0.4"
simple_logger = "4.1"
sha2 = "0.10"
hex = "0.4"
url = "2.3"
toml = "0.8.0"
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"
dnapi-rs = { version = "0.2", path = "../dnapi-rs" }
serde_yaml = "0.9"
nebula-ffi = { version = "1.7.2", path = "../nebula-ffi", optional = true }
[package.metadata.deb]
maintainer = "c0repwn3r <core@e3t.cc>"
copyright = "e3team <admin@e3t.cc>"
license-file = "LICENSE.txt"
maintainer-scripts = "debian/"
systemd-units = { enable = false, unit-name = "tfclient@" }
[features]
default = ["linked-nebula"]
linked-nebula = ["nebula-ffi"]