40 lines
962 B
TOML
40 lines
962 B
TOML
[package]
|
|
authors = [
|
|
"Jake McGinty <me@jakebot.org>",
|
|
"Brian Schwind <brian@tonari.no>",
|
|
"Ryo Kawaguchi <ryo@tonari.no>",
|
|
"Matěj Laitl <matej@tonari.no>",
|
|
]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "shared"
|
|
publish = false
|
|
version = "1.6.1"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
atty = "0.2"
|
|
clap = { version = "4.3", features = ["derive", "wrap_help"] }
|
|
colored = "2.0"
|
|
dialoguer = { version = "0.10", default-features = false }
|
|
indoc = "2.0.1"
|
|
ipnet = { version = "2.4", features = ["serde"] }
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
once_cell = "1.17.1"
|
|
publicip = { path = "../publicip" }
|
|
regex = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.8.10"
|
|
url = "2"
|
|
wireguard-control = { path = "../wireguard-control" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
netlink-packet-core = "0.7"
|
|
netlink-packet-route = "0.17"
|
|
netlink-request = { path = "../netlink-request" }
|
|
netlink-sys = "0.8.5"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
nix = "0.26"
|