build: drop stale [patch.crates-io] for removed vendored netstack-smoltcp

The vendored netstack-smoltcp directory was removed, but the workspace
[patch.crates-io] entry still pointed at the now-missing path, breaking the
whole build. ostp-client already declares netstack-smoltcp = "0.2.2", so
dropping the patch simply builds against the published crate (0.2.4).
This commit is contained in:
ospab 2026-07-12 01:21:58 +03:00
parent b166f13d59
commit 4fd4f7d435
2 changed files with 3 additions and 4 deletions

4
Cargo.lock generated
View File

@ -1316,7 +1316,9 @@ dependencies = [
[[package]]
name = "netstack-smoltcp"
version = "0.2.2"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c38f66cdd673ff0e760752f27c6d34a7e3a140f0b1eea9efae3c46d8867c83d"
dependencies = [
"etherparse",
"futures",

View File

@ -26,6 +26,3 @@ tracing = "0.1"
sha2 = "0.10"
hmac = "0.12"
portable-atomic = "1.10"
[patch.crates-io]
netstack-smoltcp = { path = "netstack-smoltcp" }