diff --git a/client/Cargo.toml b/client/Cargo.toml index 2157125..3bbb372 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -3,10 +3,10 @@ authors = ["Jake McGinty "] description = "A client to manage innernet network interfaces." edition = "2018" homepage = "https://github.com/tonarino/innernet" -repository = "https://github.com/tonarino/innernet" license = "MIT" name = "client" publish = false +repository = "https://github.com/tonarino/innernet" version = "1.0.0" [[bin]] @@ -18,7 +18,7 @@ colored = "2" dialoguer = "0.8" hostsfile = { path = "../hostsfile" } indoc = "1" -ipnetwork = { git = "https://github.com/mcginty/ipnetwork" } +ipnetwork = { git = "https://github.com/mcginty/ipnetwork" } # pending https://github.com/achanda/ipnetwork/pull/129 lazy_static = "1" libc = "0.2" regex = { version = "1", default-features = false, features = ["std"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 715e345..d80bb85 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -19,7 +19,7 @@ dashmap = "4" dialoguer = "0.8" hyper = "0.14" indoc = "1" -ipnetwork = { git = "https://github.com/mcginty/ipnetwork" } +ipnetwork = { git = "https://github.com/mcginty/ipnetwork" } # pending https://github.com/achanda/ipnetwork/pull/129 libc = "0.2" libsqlite3-sys = "0.20" log = "0.4" @@ -34,7 +34,7 @@ structopt = "0.3" thiserror = "1" tokio = { version = "1", features = ["macros", "rt-multi-thread"] } toml = "0.5" -warp = { git = "https://github.com/tonarino/warp", default-features = false } +warp = { git = "https://github.com/tonarino/warp", default-features = false } # pending https://github.com/seanmonstar/warp/issues/830 wgctrl = { path = "../wgctrl-rs" } diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 3a893f3..d661232 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -10,7 +10,7 @@ version = "1.0.0" colored = "2.0" dialoguer = "0.8" indoc = "1" -ipnetwork = { git = "https://github.com/mcginty/ipnetwork" } +ipnetwork = { git = "https://github.com/mcginty/ipnetwork" } # pending https://github.com/achanda/ipnetwork/pull/129 lazy_static = "1" regex = "1" serde = { version = "1", features = ["derive"] } diff --git a/wgctrl-rs/Cargo.toml b/wgctrl-rs/Cargo.toml index 5fd1f0c..1c4b83d 100644 --- a/wgctrl-rs/Cargo.toml +++ b/wgctrl-rs/Cargo.toml @@ -19,5 +19,5 @@ wgctrl-sys = { path = "../wgctrl-sys" } [target.'cfg(not(target_os = "linux"))'.dependencies] rand_core = "0.6" -x25519-dalek = { git = "https://github.com/mcginty/x25519-dalek", branch = "master" } subtle = "2" +x25519-dalek = { git = "https://github.com/mcginty/x25519-dalek", branch = "master" } # pending https://github.com/dalek-cryptography/x25519-dalek/pull/64