This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/pkg/crate/libzt/Cargo.toml

34 lines
805 B
TOML
Raw Normal View History

2021-05-24 21:29:57 -07:00
[package]
name = "libzt"
2021-05-31 13:51:31 -07:00
version = "0.1.2"
2021-05-24 21:29:57 -07:00
authors = ["Joseph Henry <joseph.henry@zerotier.com>"]
edition = "2018"
description = "Encrypted P2P SD-WAN library by ZeroTier"
2021-05-31 13:51:31 -07:00
documentation = "https://docs.zerotier.com"
repository = "https://github.com/zerotier/libzt"
2021-05-24 21:29:57 -07:00
readme = "README.md"
homepage = "https://www.zerotier.com"
license-file = "LICENSE.txt"
keywords = ["zerotier", "p2p", "vpn", "socket", "network"]
categories = ["network-programming", "cryptography"]
[dependencies]
2023-06-05 19:14:12 -07:00
log = "0.4.18"
dirs = "5.0.1"
[dev-dependencies]
anyhow = "1.0"
clap = { version = "4.3.0", features = ["derive"] }
clap-num = "1.0"
env_logger = "0.10"
parking_lot = { version = "0.12", features = ["send_guard"] }
2021-05-24 21:29:57 -07:00
[build-dependencies]
2021-05-31 13:51:31 -07:00
bindgen = "0.58"
2021-05-24 21:29:57 -07:00
libc = "0.2"
2021-05-30 19:51:26 -07:00
cmake = "0.1"
2021-05-24 21:29:57 -07:00
[lib]
name = "libzt"
path = "src/lib.rs"