From 4fd4f7d43580c065e9c7373a1057726e549fa188 Mon Sep 17 00:00:00 2001 From: ospab Date: Sun, 12 Jul 2026 01:21:58 +0300 Subject: [PATCH] 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). --- Cargo.lock | 4 +++- Cargo.toml | 3 --- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 19a3cb0..95b0278 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 1eb2676..653f621 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" }