mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-05-28 16:13:44 +02:00
19 lines
777 B
TOML
19 lines
777 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" }
|
|
zerotier-network-hypervisor = { path = "../network-hypervisor" }
|
|
zerotier-vl1-service = { path = "../vl1-service" }
|
|
async-trait = "^0"
|
|
tokio = { version = "^1", features = ["fs", "io-util", "io-std", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "sync", "time"], default-features = false }
|
|
parking_lot = { version = "^0", features = [], default-features = false }
|
|
serde = { version = "^1", features = ["derive"], default-features = false }
|
|
serde_json = { version = "^1", features = ["std"], default-features = false }
|