mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 08:57:26 +02:00
27 lines
728 B
TOML
27 lines
728 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>"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
|
|
[dependencies]
|
|
zerotier-core-crypto = { path = "../zerotier-core-crypto" }
|
|
base64 = "^0"
|
|
lz4_flex = { version = "^0", features = ["safe-encode", "safe-decode", "checked-decode"] }
|
|
dashmap = "^5"
|
|
parking_lot = "^0"
|
|
lazy_static = "^1"
|
|
serde = { version = "^1", features = [], default-features = false }
|
|
|
|
[target."cfg(not(windows))".dependencies]
|
|
libc = "^0"
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
winapi = { version = "^0", features = ["ws2tcpip"] }
|