mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 17:03:43 +02:00
21 lines
773 B
TOML
21 lines
773 B
TOML
[package]
|
|
name = "zerotier-vl1-service"
|
|
version = "0.1.0"
|
|
authors = ["ZeroTier, Inc. <contact@zerotier.com>", "Adam Ierymenko <adam.ierymenko@zerotier.com>"]
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
|
|
[dependencies]
|
|
zerotier-network-hypervisor = { path = "../network-hypervisor" }
|
|
zerotier-crypto = { path = "../crypto" }
|
|
zerotier-utils = { path = "../utils" }
|
|
num-traits = "^0"
|
|
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 }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
winapi = { version = "^0", features = ["handleapi", "ws2ipdef", "ws2tcpip"] }
|
|
|
|
[target."cfg(not(windows))".dependencies]
|
|
libc = "^0"
|