forked from cloudflare/boringtun
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
57 lines (46 loc) · 1.14 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "boringtun"
description = "an implementation of the WireGuard® protocol designed for portability and speed"
version = "0.3.0"
authors = ["Vlad Krasnov <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/cloudflare/boringtun"
edition = "2018"
[features]
pqlvl0 = []
pqlvl1 = []
pqlvl2 = []
pqlvl3 = []
[dependencies]
base64 = "0.9"
hex = "0.3"
untrusted = "0.6"
spin = { version = "0.5", default-features=false }
libc = "0.2"
[target.'cfg(not(target_arch="arm"))'.dependencies]
ring = "0.14"
[target.'cfg(not(any(target_os="windows", target_os="ios", target_os="android")))'.dependencies]
chrono = "0.4"
daemonize = "0.4.1"
clap = { version = "2.32", default-features=false, features = ["suggestions"] }
[target.'cfg(target_os="android")'.dependencies]
jni = "0.10"
[dev-dependencies]
criterion = "0.3"
[lib]
crate-type = ["lib", "staticlib", "dylib"]
bench = false
[[bin]]
name = "boringtun"
path = "src/main.rs"
bench = false
[[example]]
name = "benchmarks"
path = "src/benchmarks_example.rs"
[[bench]]
name = "cloudflare"
harness = false
[[bench]]
name = "mybench"
harness = false