2023-02-02 23:38:39 +00:00
|
|
|
[package]
|
|
|
|
name = "tfclient"
|
2023-10-09 19:06:02 +00:00
|
|
|
version = "0.2.6"
|
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-07-26 01:05:02 +00:00
|
|
|
clap = { version = "4.1", features = ["derive"] }
|
2023-04-07 00:19:23 +00:00
|
|
|
trifid-pki = { version = "0.1", path = "../trifid-pki", features = ["serde_derive"] }
|
2023-07-26 01:05:02 +00:00
|
|
|
dirs = "5"
|
|
|
|
log = "0.4"
|
|
|
|
simple_logger = "4.1"
|
|
|
|
sha2 = "0.10"
|
|
|
|
hex = "0.4"
|
|
|
|
url = "2.3"
|
2023-09-26 13:14:42 +00:00
|
|
|
toml = "0.8.0"
|
2023-07-26 01:05:02 +00: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 13:14:42 +00:00
|
|
|
dnapi-rs = { version = "0.2", path = "../dnapi-rs" }
|
2023-07-26 01:05:02 +00:00
|
|
|
serde_yaml = "0.9"
|
2023-10-09 19:06:02 +00:00
|
|
|
nebula-ffi = { version = "1.7.2", path = "../nebula-ffi", optional = true }
|
2023-06-26 03:07:47 +00:00
|
|
|
[package.metadata.deb]
|
|
|
|
maintainer = "c0repwn3r <core@e3t.cc>"
|
|
|
|
copyright = "e3team <admin@e3t.cc>"
|
|
|
|
license-file = "LICENSE.txt"
|
|
|
|
maintainer-scripts = "debian/"
|
2023-06-27 02:48:05 +00:00
|
|
|
systemd-units = { enable = false, unit-name = "tfclient@" }
|
|
|
|
|
2023-07-12 15:28:50 +00:00
|
|
|
[features]
|
|
|
|
default = ["linked-nebula"]
|
|
|
|
linked-nebula = ["nebula-ffi"]
|