diff --git a/Cargo.lock b/Cargo.lock index f24f0672..f515d1b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2460,18 +2460,6 @@ dependencies = [ "libc", ] -[[package]] -name = "igd" -version = "0.12.1" -source = "git+https://gitlab.com/veilid/rust-igd.git?rev=85a15fcdd9120c553345a1fe9b14256779c79548#85a15fcdd9120c553345a1fe9b14256779c79548" -dependencies = [ - "attohttpc", - "log", - "rand 0.8.5", - "url", - "xmltree", -] - [[package]] name = "image" version = "0.24.7" @@ -5594,7 +5582,6 @@ dependencies = [ "getrandom 0.2.10", "hex", "ifstructs", - "igd", "jni", "jni-sys", "js-sys", @@ -5646,6 +5633,7 @@ dependencies = [ "trust-dns-resolver", "veilid-bugsalot", "veilid-hashlink", + "veilid-igd", "veilid-tools", "wasm-bindgen", "wasm-bindgen-futures", @@ -5702,6 +5690,19 @@ dependencies = [ "serde", ] +[[package]] +name = "veilid-igd" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28428a3f826ed334f995522e554d7c8c1a5a0e0a0248fc795a31022ddf436c9d" +dependencies = [ + "attohttpc", + "log", + "rand 0.8.5", + "url", + "xmltree", +] + [[package]] name = "veilid-server" version = "0.2.0" diff --git a/veilid-core/Cargo.toml b/veilid-core/Cargo.toml index 0a1fcc74..d6d9cee4 100644 --- a/veilid-core/Cargo.toml +++ b/veilid-core/Cargo.toml @@ -171,7 +171,7 @@ keyvaluedb-sqlite = "0.1.0" # Network async-tungstenite = { version = "0.23.0", features = ["async-tls"] } -igd = { version = "0.12.1", git = "https://gitlab.com/veilid/rust-igd.git", rev = "85a15fcdd9120c553345a1fe9b14256779c79548" } +igd = { package = "veilid-igd", version = "0.1.0" } async-tls = "0.12.0" webpki = "0.22.0" webpki-roots = "0.25.2"