more fork

This commit is contained in:
John Smith 2023-09-03 10:23:41 -04:00
parent 896df0bb97
commit 71f91998b2
2 changed files with 15 additions and 14 deletions

27
Cargo.lock generated
View File

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

View File

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