-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
42 lines (36 loc) · 978 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
33
34
35
36
37
38
39
40
41
42
[package]
name = "wireguard-vanity-address"
version = "0.4.1-alpha.0"
edition = "2018"
authors = ["Brian Warner <warner@lothar.com>"]
description = "Find Wireguard VPN keypairs with a specific readable string"
license = "MIT"
readme = "README.md"
categories = ["cryptography"]
documentation = "https://docs.rs/wireguard-vanity-address"
homepage = "https://github.com/warner/wireguard-vanity-address"
repository = "https://github.com/warner/wireguard-vanity-address"
exclude = [
"**/.gitignore",
".gitignore",
]
[badges]
travis-ci = { repository = "warner/wireguard-vanity-address" }
[dependencies]
clap = "~2.33.0"
rayon = "1.0"
base64 = "0.12"
rand_core = { version = "0.5", default-features = false, features = ["getrandom"] }
x25519-dalek = "0.6"
num_cpus = "1.0"
[dev-dependencies]
criterion = "0.3"
[lib]
name = "wireguard_vanity_lib"
path = "src/lib.rs"
[[bin]]
name = "wireguard-vanity-address"
path = "src/bin.rs"
[[bench]]
name = "keygen"
harness = false