ZeroTierOne/network-hypervisor/Cargo.toml
2022-09-13 17:34:39 -04:00

35 lines
913 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" }
async-trait = "^0"
base64 = "^0"
lz4_flex = { version = "^0", features = ["safe-encode", "safe-decode", "checked-decode"] }
parking_lot = { version = "^0", features = [], default-features = false }
serde = { version = "^1", features = ["derive"], default-features = false }
[dev-dependencies]
rand = "*"
serde_json = "*"
serde_cbor = "*"
criterion = "0.3"
[target."cfg(not(windows))".dependencies]
libc = "^0"
[target."cfg(windows)".dependencies]
winapi = { version = "^0", features = ["ws2tcpip"] }
[[bench]]
name = "benchmark_identity"
harness = false