forked from jamesmcm/vopono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (47 loc) · 1.21 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
[package]
name = "vopono"
description = "Launch applications via VPN tunnels using temporary network namespaces"
version = "0.4.0"
authors = ["James McMurray <jamesmcm03@gmail.com>"]
edition = "2018"
license = "GPL-3.0-or-later"
repository = "https://github.com/jamesmcm/vopono"
homepage = "https://github.com/jamesmcm/vopono"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3"
anyhow = "1"
directories-next = "1"
log = "0.4"
pretty_env_logger = "0.4"
clap = "2"
which = "4"
users = "0.10"
nix = "0.17"
serde = {version = "1", features = ["derive", "std"]}
csv = "1"
dialoguer = "0.6"
regex = "1"
ron = "0.6"
walkdir = "2"
rand = "0.7"
toml = "0.5"
chrono = "0.4"
compound_duration = "1"
ipnet = {version = "2", features = ["serde"]}
reqwest = {default-features = false, version = "0.10", features = ["blocking", "json", "rustls-tls"]}
sysinfo = "0.14"
base64 = "0.12"
x25519-dalek = "0.6"
strum = "0.18"
strum_macros = "0.18"
zip = "0.5"
maplit = "1"
webbrowser = "0.5"
[package.metadata.rpm]
package = "vopono"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
vopono = { path = "/usr/bin/vopono" }