2021-03-29 19:22:14 +02:00
|
|
|
[package]
|
|
|
|
authors = ["Jake McGinty <me@jake.su>"]
|
2022-01-11 09:54:43 +02:00
|
|
|
edition = "2021"
|
2021-03-29 19:22:14 +02:00
|
|
|
license = "MIT"
|
|
|
|
name = "shared"
|
|
|
|
publish = false
|
2022-03-16 11:17:37 +02:00
|
|
|
version = "1.5.4"
|
2021-03-29 19:22:14 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2021-06-10 15:57:47 +02:00
|
|
|
anyhow = "1"
|
2021-06-14 08:52:15 +02:00
|
|
|
atty = "0.2"
|
2022-01-11 09:51:32 +02:00
|
|
|
clap = { version = "3", features = ["derive"] }
|
2021-03-29 19:22:14 +02:00
|
|
|
colored = "2.0"
|
2022-03-15 03:47:52 +02:00
|
|
|
dialoguer = { version = "0.10", default-features = false }
|
2021-03-29 19:22:14 +02:00
|
|
|
indoc = "1"
|
2022-03-15 03:47:52 +02:00
|
|
|
ipnet = { version = "2.4", features = ["serde"] }
|
2021-03-29 19:22:14 +02:00
|
|
|
lazy_static = "1"
|
2021-06-10 15:57:47 +02:00
|
|
|
libc = "0.2"
|
2021-05-19 20:11:51 +02:00
|
|
|
log = "0.4"
|
2021-05-09 12:57:52 +02:00
|
|
|
publicip = { path = "../publicip" }
|
2021-03-29 19:22:14 +02:00
|
|
|
regex = "1"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
toml = "0.5"
|
2021-04-20 17:35:10 +02:00
|
|
|
url = "2"
|
2021-09-15 05:29:58 +02:00
|
|
|
wireguard-control = { path = "../wireguard-control" }
|
2021-06-10 15:57:47 +02:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2022-01-07 11:35:21 +02:00
|
|
|
netlink-sys = "0.8"
|
|
|
|
netlink-packet-core = "0.4"
|
2022-08-10 23:55:01 +02:00
|
|
|
netlink-packet-route = "0.13"
|
2022-01-07 11:35:21 +02:00
|
|
|
netlink-request = { path = "../netlink-request" }
|
2021-09-01 11:58:46 +02:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2022-09-24 05:38:23 +02:00
|
|
|
nix = "0.25"
|