2021-03-29 17:22:14 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Jake McGinty <me@jake.su>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
name = "shared"
|
|
|
|
publish = false
|
2021-06-16 11:28:52 +00:00
|
|
|
version = "1.4.0-beta.3"
|
2021-03-29 17:22:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-06-10 13:57:47 +00:00
|
|
|
anyhow = "1"
|
2021-06-14 06:52:15 +00:00
|
|
|
atty = "0.2"
|
2021-03-29 17:22:14 +00:00
|
|
|
colored = "2.0"
|
|
|
|
dialoguer = "0.8"
|
|
|
|
indoc = "1"
|
2021-04-05 17:19:21 +00:00
|
|
|
ipnetwork = { git = "https://github.com/mcginty/ipnetwork" } # pending https://github.com/achanda/ipnetwork/pull/129
|
2021-03-29 17:22:14 +00:00
|
|
|
lazy_static = "1"
|
2021-06-10 13:57:47 +00:00
|
|
|
libc = "0.2"
|
2021-05-19 18:11:51 +00:00
|
|
|
log = "0.4"
|
2021-05-09 10:57:52 +00:00
|
|
|
publicip = { path = "../publicip" }
|
2021-03-29 17:22:14 +00:00
|
|
|
regex = "1"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
2021-04-14 15:25:31 +00:00
|
|
|
structopt = "0.3"
|
2021-03-29 17:22:14 +00:00
|
|
|
toml = "0.5"
|
2021-04-20 15:35:10 +00:00
|
|
|
url = "2"
|
2021-03-29 17:22:14 +00:00
|
|
|
wgctrl = { path = "../wgctrl-rs" }
|
2021-06-10 13:57:47 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
netlink-sys = "0.6"
|
|
|
|
netlink-packet-core = "0.2"
|
|
|
|
netlink-packet-route = "0.7"
|
|
|
|
wgctrl-sys = { path = "../wgctrl-sys" }
|