-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (28 loc) · 885 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
[package]
name = "wg-bond"
version = "0.3.0"
authors = ["Vladimir Serov <[email protected]>"]
edition = "2018"
license = "GPL-3.0+"
description = "Wireguard configuration manager"
readme = "README.md"
repository = "https://gitlab.com/cab404/wg-bond"
homepage = "https://gitlab.com/cab404/wg-bond"
keywords = [ "wireguard", "networking", "cli" ]
categories = [ "command-line-utilities" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
url = "2.1.1"
rand = "0.8.4"
base64 = "0.13.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = "0.24.0"
strum_macros = "0.24.0"
rand_core = {version = "0.5", default-features = false, features = ["getrandom"]}
x25519-dalek = "1"
qrcode = { version = "0.12", default-features = false }
ipnetwork = "0.20"
clap = "3.2"
pretty_env_logger = "0.4"