2021-03-29 17:22:14 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Jake McGinty <me@jake.su>"]
|
2022-01-11 07:54:43 +00:00
|
|
|
edition = "2021"
|
2021-03-29 17:22:14 +00:00
|
|
|
license = "MIT"
|
|
|
|
name = "shared"
|
|
|
|
publish = false
|
2022-01-31 19:56:11 +00:00
|
|
|
version = "1.5.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"
|
2022-01-11 07:51:32 +00:00
|
|
|
clap = { version = "3", features = ["derive"] }
|
2021-03-29 17:22:14 +00:00
|
|
|
colored = "2.0"
|
2021-10-22 03:55:49 +00:00
|
|
|
dialoguer = { version = "0.9", default-features = false }
|
2021-03-29 17:22:14 +00:00
|
|
|
indoc = "1"
|
2021-08-26 05:57:04 +00:00
|
|
|
ipnetwork = { git = "https://github.com/mcginty/ipnetwork", rev ="393f2d89e41ac6c1c0d80a31fc0997c387a7f7ba" }
|
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"] }
|
|
|
|
toml = "0.5"
|
2021-04-20 15:35:10 +00:00
|
|
|
url = "2"
|
2021-09-15 03:29:58 +00:00
|
|
|
wireguard-control = { path = "../wireguard-control" }
|
2021-06-10 13:57:47 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2022-01-07 09:35:21 +00:00
|
|
|
netlink-sys = "0.8"
|
|
|
|
netlink-packet-core = "0.4"
|
|
|
|
netlink-packet-route = "0.10"
|
|
|
|
netlink-request = { path = "../netlink-request" }
|
2021-09-01 09:58:46 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2021-10-22 03:55:49 +00:00
|
|
|
nix = "0.23"
|