mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-25 16:36:54 +02:00
34 lines
904 B
TOML
34 lines
904 B
TOML
[package]
|
|
name = "zerotier-network-hypervisor"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
authors = ["ZeroTier, Inc. <contact@zerotier.com>", "Adam Ierymenko <adam.ierymenko@zerotier.com>"]
|
|
|
|
[features]
|
|
default = ["debug_events"]
|
|
debug_events = []
|
|
|
|
[dependencies]
|
|
zerotier-crypto = { path = "../crypto" }
|
|
zerotier-utils = { path = "../utils" }
|
|
lz4_flex = { version = "^0", features = ["safe-encode", "safe-decode", "checked-decode"] }
|
|
serde = { version = "^1", features = ["derive"], default-features = false }
|
|
phf = { version = "^0", features = ["macros", "std"], default-features = false }
|
|
num-traits = "^0"
|
|
|
|
[dev-dependencies]
|
|
rand = "*"
|
|
serde_json = "*"
|
|
serde_cbor = "*"
|
|
criterion = "^0"
|
|
|
|
[target."cfg(not(windows))".dependencies]
|
|
libc = "^0"
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
winapi = { version = "^0", features = ["ws2tcpip"] }
|
|
|
|
[[bench]]
|
|
name = "benchmark_identity"
|
|
harness = false
|