meta: include tickets for git-based cargo dependencies

pull/35/head
Jake McGinty 2021-04-06 02:19:21 +09:00
parent 41565e46d7
commit 17f56556ea
4 changed files with 6 additions and 6 deletions

View File

@ -3,10 +3,10 @@ authors = ["Jake McGinty <jake@tonari.no>"]
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"] }

View File

@ -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" }

View File

@ -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"] }

View File

@ -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