2021-03-29 17:22:14 +00:00
|
|
|
[package]
|
2023-06-06 03:21:11 +00:00
|
|
|
authors = [
|
|
|
|
"Jake McGinty <me@jakebot.org>",
|
|
|
|
"Brian Schwind <brian@tonari.no>",
|
|
|
|
"Ryo Kawaguchi <ryo@tonari.no>",
|
|
|
|
"Matěj Laitl <matej@tonari.no>",
|
|
|
|
]
|
2022-01-11 07:54:43 +00:00
|
|
|
edition = "2021"
|
2021-03-29 17:22:14 +00:00
|
|
|
license = "MIT"
|
|
|
|
name = "shared"
|
|
|
|
publish = false
|
2023-12-27 03:42:31 +00:00
|
|
|
version = "1.6.1"
|
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"
|
2023-06-01 06:25:46 +00:00
|
|
|
clap = { version = "4.3", features = ["derive", "wrap_help"] }
|
2021-03-29 17:22:14 +00:00
|
|
|
colored = "2.0"
|
2022-03-15 01:47:52 +00:00
|
|
|
dialoguer = { version = "0.10", default-features = false }
|
2023-06-01 06:25:46 +00:00
|
|
|
indoc = "2.0.1"
|
2022-03-15 01:47:52 +00:00
|
|
|
ipnet = { version = "2.4", features = ["serde"] }
|
2021-06-10 13:57:47 +00:00
|
|
|
libc = "0.2"
|
2021-05-19 18:11:51 +00:00
|
|
|
log = "0.4"
|
2023-05-30 06:34:44 +00:00
|
|
|
once_cell = "1.17.1"
|
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"] }
|
2024-04-18 15:09:23 +00:00
|
|
|
toml = "0.8.10"
|
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]
|
2023-08-19 11:00:02 +00:00
|
|
|
netlink-packet-core = "0.7"
|
|
|
|
netlink-packet-route = "0.17"
|
2022-01-07 09:35:21 +00:00
|
|
|
netlink-request = { path = "../netlink-request" }
|
2024-04-18 15:09:23 +00:00
|
|
|
netlink-sys = "0.8.5"
|
2021-09-01 09:58:46 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2023-06-01 06:25:46 +00:00
|
|
|
nix = "0.26"
|