[package] name = "zerotier-service" version = "0.1.0" authors = ["ZeroTier, Inc. ", "Adam Ierymenko "] edition = "2021" license = "MPL-2.0" [[bin]] name = "zerotier" path = "src/main.rs" [dependencies] zerotier-network-hypervisor = { path = "../network-hypervisor" } zerotier-crypto = { path = "../crypto" } zerotier-utils = { path = "../utils", features = ["tokio"] } zerotier-vl1-service = { path = "../vl1-service" } serde = { version = "^1", features = ["derive"], default-features = false } serde_json = { version = "^1", features = ["std"], default-features = false } clap = { version = "^3", features = ["std", "suggestions"], default-features = false } [target."cfg(windows)".dependencies] winapi = { version = "^0", features = ["handleapi", "ws2ipdef", "ws2tcpip"] } [target."cfg(not(windows))".dependencies] libc = "^0" signal-hook = "^0"