innernet/shared/Cargo.toml

32 lines
721 B
TOML
Raw Normal View History

2021-03-29 17:22:14 +00:00
[package]
authors = ["Jake McGinty <me@jake.su>"]
edition = "2018"
license = "MIT"
name = "shared"
publish = false
2021-08-02 16:26:38 +00:00
version = "1.4.1"
2021-03-29 17:22:14 +00:00
[dependencies]
anyhow = "1"
atty = "0.2"
2021-03-29 17:22:14 +00:00
colored = "2.0"
dialoguer = "0.8"
indoc = "1"
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"
libc = "0.2"
2021-05-19 18:11:51 +00:00
log = "0.4"
publicip = { path = "../publicip" }
2021-03-29 17:22:14 +00:00
regex = "1"
serde = { version = "1", features = ["derive"] }
structopt = "0.3"
2021-03-29 17:22:14 +00:00
toml = "0.5"
url = "2"
2021-03-29 17:22:14 +00:00
wgctrl = { path = "../wgctrl-rs" }
[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" }