From 962208eaa91d1481d04e50503f903c8b28c308a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 10:06:51 +0000 Subject: [PATCH] build(deps): bump the dependencies group with 1 update Bumps the dependencies group with 1 update: [smoltcp](https://github.com/smoltcp-rs/smoltcp). Updates `smoltcp` from 0.10.0 to 0.11.0 - [Release notes](https://github.com/smoltcp-rs/smoltcp/releases) - [Changelog](https://github.com/smoltcp-rs/smoltcp/blob/main/CHANGELOG.md) - [Commits](https://github.com/smoltcp-rs/smoltcp/compare/v0.10.0...v0.11.0) --- updated-dependencies: - dependency-name: smoltcp dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 45 ++++++++++++++++++++++++++++---- Cargo.toml | 2 +- wireguard-test-client/Cargo.toml | 2 +- 3 files changed, 42 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c0053f99..53b89ac7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -945,6 +945,15 @@ dependencies = [ "byteorder", ] +[[package]] +name = "hash32" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" +dependencies = [ + "byteorder", +] + [[package]] name = "hashbrown" version = "0.12.3" @@ -971,12 +980,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db04bc24a18b9ea980628ecf00e6c0264f3c1426dac36c00cb49b6fbad8b0743" dependencies = [ "atomic-polyfill", - "hash32", + "hash32 0.2.1", "rustc_version", "spin 0.9.8", "stable_deref_trait", ] +[[package]] +name = "heapless" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" +dependencies = [ + "hash32 0.3.1", + "stable_deref_trait", +] + [[package]] name = "hermit-abi" version = "0.3.3" @@ -1130,7 +1149,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95d8d20ad61a92e71edf571fa568e14aeba0c5f00548acd491fbf694ce9a5ad8" dependencies = [ "internet-checksum", - "smoltcp", + "smoltcp 0.10.0", ] [[package]] @@ -1338,7 +1357,7 @@ dependencies = [ "boringtun", "data-encoding", "hex", - "smoltcp", + "smoltcp 0.11.0", ] [[package]] @@ -1363,7 +1382,7 @@ dependencies = [ "prost", "rand", "rand_core", - "smoltcp", + "smoltcp 0.11.0", "tokio", "tokio-util", "windows 0.52.0", @@ -2027,7 +2046,23 @@ dependencies = [ "byteorder", "cfg-if", "defmt", - "heapless", + "heapless 0.7.16", + "libc", + "log", + "managed", +] + +[[package]] +name = "smoltcp" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a1a996951e50b5971a2c8c0fa05a381480d70a933064245c4a223ddc87ccc97" +dependencies = [ + "bitflags 1.3.2", + "byteorder", + "cfg-if", + "defmt", + "heapless 0.8.0", "libc", "log", "managed", diff --git a/Cargo.toml b/Cargo.toml index d48ead11..c9b9b4cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ log = "0.4.18" once_cell = "1" pretty-hex = "0.4.1" rand_core = { version = "0.6.4", features = ["getrandom"] } -smoltcp = "0.10" +smoltcp = "0.11" tokio = { version = "1.35.1", features = ["macros", "net", "rt-multi-thread", "sync", "time", "io-util", "process"] } boringtun = { version = "0.6", default-features = false } x25519-dalek = "=2.0.0-rc.3" diff --git a/wireguard-test-client/Cargo.toml b/wireguard-test-client/Cargo.toml index 7fcbc57f..f8e3e19f 100644 --- a/wireguard-test-client/Cargo.toml +++ b/wireguard-test-client/Cargo.toml @@ -14,4 +14,4 @@ anyhow = "1.0.79" data-encoding = "2.5.0" boringtun = "0.6" hex = "0.4" -smoltcp = "0.10" +smoltcp = "0.11"