mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 17:03:43 +02:00
30 lines
568 B
TOML
30 lines
568 B
TOML
[package]
|
|
name = "zerotier-network-hypervisor"
|
|
version = "2.0.0"
|
|
edition = "2018"
|
|
|
|
# [profile.test]
|
|
# opt-level = 3
|
|
# lto = true
|
|
# codegen-units = 1
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 'z'
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
|
|
[dependencies]
|
|
rand_core = "^0"
|
|
aes-gmac-siv = { path = "../aes-gmac-siv" }
|
|
x25519-dalek = "^1"
|
|
ed25519-dalek = "^1"
|
|
gcrypt = "^0"
|
|
base64 = "^0"
|
|
urlencoding = "^2"
|
|
|
|
[target."cfg(not(windows))".dependencies]
|
|
libc = "^0"
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
winapi = { version = "0.3.9", features = ["handleapi", "ws2ipdef", "ws2tcpip"] }
|