forked from nulldotblack/wireguard-nt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (28 loc) · 873 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "wireguard-nt"
version = "0.3.0"
edition = "2018"
authors = ["null.black Inc. <opensource@null.black>", "Troy Neubauer <troy@null.black>"]
repository = "https://github.com/nulldotblack/wireguard-nt"
readme = "README.md"
documentation = "https://docs.rs/wireguard-nt/"
description = "Safe idiomatic bindings to the Wireguard NT C library"
license = "MIT"
keywords = ["wireguard", "vpn", "windows"]
categories = ["api-bindings"]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["aarch64-pc-windows-msvc", "i686-pc-windows-msvc", "x86_64-pc-windows-msvc"]
[dependencies]
widestring = "0.4"
log = "0.4"
rand = "0.8"
bitflags = "1.3"
libloading = "0.7"
ipnet = "2.3"
winapi = { version = "0.3", features = ["ws2def", "netioapi", "nldef"] }
[dev-dependencies]
env_logger = "0.9"
base64 = "0.13"
boringtun = "0.3"
ipnet = "2.3"