2019-03-22 19:36:00 +00:00
|
|
|
[package]
|
|
|
|
name = "boringtun"
|
2019-03-23 18:08:01 +00:00
|
|
|
description = "an implementation of the WireGuard® protocol designed for portability and speed"
|
2019-09-19 19:40:40 +00:00
|
|
|
version = "0.3.0"
|
2019-03-22 19:36:00 +00:00
|
|
|
authors = ["Vlad Krasnov <vlad@cloudflare.com>"]
|
2019-03-23 18:08:01 +00:00
|
|
|
license = "BSD-3-Clause"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/cloudflare/boringtun"
|
2019-03-26 16:48:55 +00:00
|
|
|
edition = "2018"
|
2019-03-22 19:36:00 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-04-05 06:45:23 +00:00
|
|
|
base64 = "0.12"
|
|
|
|
hex = "0.4"
|
|
|
|
untrusted = "0.7"
|
2019-03-22 19:36:00 +00:00
|
|
|
libc = "0.2"
|
2020-05-18 16:32:23 +00:00
|
|
|
parking_lot = "0.10"
|
2020-05-18 20:53:36 +00:00
|
|
|
slog = "2.5"
|
|
|
|
slog-term = "2.5"
|
2021-07-21 16:14:18 +00:00
|
|
|
ip_network = "0.3.4"
|
|
|
|
ip_network_table = "0.1.2"
|
2019-03-22 19:36:00 +00:00
|
|
|
|
|
|
|
[target.'cfg(not(target_arch="arm"))'.dependencies]
|
2020-01-28 06:42:55 +00:00
|
|
|
ring = "0.16"
|
2019-03-22 19:36:00 +00:00
|
|
|
|
|
|
|
[target.'cfg(not(any(target_os="windows", target_os="ios", target_os="android")))'.dependencies]
|
|
|
|
chrono = "0.4"
|
2019-03-27 17:49:51 +00:00
|
|
|
daemonize = "0.4.1"
|
2020-04-05 06:45:23 +00:00
|
|
|
clap = { version = "2.33", default-features=false, features = ["suggestions"] }
|
2019-03-22 19:36:00 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os="android")'.dependencies]
|
2019-09-19 19:40:40 +00:00
|
|
|
jni = "0.10"
|
2019-03-22 19:36:00 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["lib", "staticlib", "dylib"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "boringtun"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "benchmarks"
|
|
|
|
path = "src/benchmarks_example.rs"
|