[package]
edition = "2018"
name = "boringtun"
version = "0.2.0"
authors = ["Vlad Krasnov <vlad@cloudflare.com>"]
description = "an implementation of the WireGuard® protocol designed for portability and speed"
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/cloudflare/boringtun"
[lib]
crate-type = ["lib", "staticlib", "dylib"]
[[bin]]
name = "boringtun"
path = "src/main.rs"
[[example]]
name = "benchmarks"
path = "src/benchmarks_example.rs"
[dependencies.base64]
version = "0.9.2"
[dependencies.hex]
version = "0.3.2"
[dependencies.libc]
version = "0.2"
[dependencies.spin]
version = "0.5"
default-features = false
[dependencies.untrusted]
version = "0.6.2"
[target."cfg(not(any(target_os=\"windows\", target_os=\"ios\", target_os=\"android\")))".dependencies.chrono]
version = "0.4"
[target."cfg(not(any(target_os=\"windows\", target_os=\"ios\", target_os=\"android\")))".dependencies.clap]
version = "2.32.0"
features = ["suggestions"]
default-features = false
[target."cfg(not(any(target_os=\"windows\", target_os=\"ios\", target_os=\"android\")))".dependencies.daemonize]
version = "0.4.1"
[target."cfg(not(target_arch=\"arm\"))".dependencies.ring]
version = "0.14"
[target."cfg(target_os=\"android\")".dependencies.jni]
version = "0.10.2"