mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-25 08:27:39 +02:00
22 lines
776 B
TOML
22 lines
776 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 }
|
|
notify = { version = "^5", features = ["macos_fsevent"], default-features = false }
|
|
tokio-postgres = "^0"
|
|
pin-utils = "^0"
|