mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 08:57:26 +02:00
23 lines
727 B
TOML
23 lines
727 B
TOML
[package]
|
|
name = "zerotier-network-controller"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "zerotier-controller"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
zerotier-crypto = { path = "../crypto" }
|
|
zerotier-utils = { path = "../utils", features = ["tokio"] }
|
|
zerotier-network-hypervisor = { path = "../network-hypervisor" }
|
|
zerotier-vl1-service = { path = "../vl1-service" }
|
|
async-trait = "^0"
|
|
serde = { version = "^1", features = ["derive"], default-features = false }
|
|
serde_json = { version = "^1", features = ["std"], default-features = false }
|
|
serde_yaml = "^0"
|
|
clap = { version = "^3", features = ["std", "suggestions"], default-features = false }
|
|
|
|
[target."cfg(not(windows))".dependencies]
|
|
signal-hook = "^0"
|
|
libc = "^0"
|