Fix: smoltcp-зависимость через https, не ssh — CI не может её склонировать

CI-раннер не имеет SSH-ключа для github.com (и не должен — там нет ничего
кроме публичного форка smoltcp). Репозиторий nxrp-smoltcp публичный,
https-клон анонимный и не требует вообще никаких секретов, в отличие от
ssh://, который требует ключ даже для публичных репо.
This commit is contained in:
2026-07-10 20:13:16 +07:00
parent bf5b914ddc
commit 87f9f865ae
2 changed files with 2 additions and 2 deletions
Generated
+1 -1
View File
@@ -2557,7 +2557,7 @@ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
[[package]] [[package]]
name = "smoltcp" name = "smoltcp"
version = "0.13.0" version = "0.13.0"
source = "git+ssh://git@github.com/nineAp/nxrp-smoltcp.git#e9ba23b47ab789eb480d2eef2ffc4d7cdfedb381" source = "git+https://github.com/nineAp/nxrp-smoltcp.git#c8093df6ec24f75c13bedf0e74e53cefe26997e0"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"byteorder", "byteorder",
+1 -1
View File
@@ -9,7 +9,7 @@ crate-type = ["cdylib", "rlib", "staticlib"]
[dependencies] [dependencies]
netrunner-core = { path = "../core" } netrunner-core = { path = "../core" }
smoltcp = { git = "ssh://git@github.com/nineAp/nxrp-smoltcp.git", default-features = false, features = [ smoltcp = { git = "https://github.com/nineAp/nxrp-smoltcp.git", default-features = false, features = [
"std", "std",
"log", "log",
"medium-ip", "medium-ip",