From 4f94c4b8c5691a4782eacd954ead8572844cd756 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Mon, 27 Oct 2025 12:52:54 +0000 Subject: [PATCH] smoltcp-nal 0.7 --- Cargo.lock | 9 +++++---- Cargo.toml | 3 +-- platform/Cargo.toml | 6 +----- stream/Cargo.toml | 6 +----- 4 files changed, 8 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 237edc2c00..5dcf2b34b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -855,9 +855,9 @@ dependencies = [ [[package]] name = "nanorand" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" +checksum = "6e3d189da485332e96ba8a5ef646a311871abd7915bf06ac848a9117f19cf6e4" [[package]] name = "nb" @@ -1485,8 +1485,9 @@ dependencies = [ [[package]] name = "smoltcp-nal" -version = "0.6.0" -source = "git+https://github.com/quartiq/smoltcp-nal.git#bb415665334c34f7434d51edb20793e36dc7f0cd" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5715732514e3a32e087ac50564aeb62bb0212268b704b401b57ed47cd63566aa" dependencies = [ "embedded-nal", "embedded-time", diff --git a/Cargo.toml b/Cargo.toml index 36c5ed150a..b0c7f57a28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,9 +98,8 @@ platform = { version = "0.1", path = "platform" } libm = "0.2.15" [dependencies.smoltcp-nal] -version = "0.6" +version = "0.7" features = ["shared-stack"] -git = "https://github.com/quartiq/smoltcp-nal.git" [build-dependencies] built = { version = "0.8", features = ["git2"], default-features = false } diff --git a/platform/Cargo.toml b/platform/Cargo.toml index b300250627..9b35e8dd5e 100644 --- a/platform/Cargo.toml +++ b/platform/Cargo.toml @@ -27,8 +27,4 @@ minimq = "0.10.0" embedded-hal-02 = { package = "embedded-hal", version = "0.2.7", features = [ "unproven", ] } - -[dependencies.smoltcp-nal] -version = "0.6" -features = ["shared-stack"] -git = "https://github.com/quartiq/smoltcp-nal.git" +smoltcp-nal = { version = "0.7", features = ["shared-stack"] } diff --git a/stream/Cargo.toml b/stream/Cargo.toml index d221e4a51c..663fbab745 100644 --- a/stream/Cargo.toml +++ b/stream/Cargo.toml @@ -18,8 +18,4 @@ serde_with = { version = "3.12", default-features = false, features = [ ] } log = { version = "0.4" } cortex-m = { version = "0.7.7" } - -[dependencies.smoltcp-nal] -version = "0.6" -features = ["shared-stack"] -git = "https://github.com/quartiq/smoltcp-nal.git" +smoltcp-nal = { version = "0.7", features = ["shared-stack"] }