mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-25 08:27:39 +02:00
24 lines
816 B
TOML
24 lines
816 B
TOML
[package]
|
|
authors = ["ZeroTier, Inc. <contact@zerotier.com>"]
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
name = "zerotier-utils"
|
|
version = "0.1.0"
|
|
|
|
[features]
|
|
default = []
|
|
tokio = ["dep:tokio", "dep:futures-util"]
|
|
|
|
[dependencies]
|
|
serde = { version = "^1", features = ["derive"], default-features = false }
|
|
serde_json = { version = "^1", features = ["std"], default-features = false }
|
|
tokio = { version = "^1", default-features = false, features = ["fs", "io-util", "io-std", "net", "process", "rt", "rt-multi-thread", "signal", "sync", "time"], optional = true }
|
|
futures-util = { version = "^0", optional = true }
|
|
base64 = "0.20.0"
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
winapi = { version = "^0", features = ["handleapi", "ws2ipdef", "ws2tcpip"] }
|
|
|
|
[target."cfg(not(windows))".dependencies]
|
|
libc = "^0"
|
|
signal-hook = "^0"
|