From 6fb98193cea4025e840a68165a538d706a8be61f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 21:40:41 +0000 Subject: [PATCH] deps(rust): bump gotatun from 0.7.2 to 0.8.0 in /wgbridge-rs Bumps [gotatun](https://github.com/mullvad/gotatun) from 0.7.2 to 0.8.0. - [Release notes](https://github.com/mullvad/gotatun/releases) - [Changelog](https://github.com/mullvad/gotatun/blob/main/CHANGELOG.md) - [Commits](https://github.com/mullvad/gotatun/compare/v0.7.2...v0.8.0) --- updated-dependencies: - dependency-name: gotatun dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- wgbridge-rs/Cargo.lock | 37 ++++++++++++++++++++++++++++++++++--- wgbridge-rs/Cargo.toml | 2 +- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/wgbridge-rs/Cargo.lock b/wgbridge-rs/Cargo.lock index fc6f943ea..aaa3ea69c 100644 --- a/wgbridge-rs/Cargo.lock +++ b/wgbridge-rs/Cargo.lock @@ -394,9 +394,9 @@ dependencies = [ [[package]] name = "gotatun" -version = "0.7.2" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09e8590454839d406160792e2c5617e463a0d223f7370687528d0dd6560140b9" +checksum = "af09aa1725e33bf1b186267f939fe629316da3df8e00ddeba7e446a264832bb4" dependencies = [ "aead", "base64", @@ -415,7 +415,6 @@ dependencies = [ "ip_network_table", "ipnetwork", "libc", - "log", "nix", "parking_lot", "rand", @@ -426,6 +425,7 @@ dependencies = [ "thiserror", "tokio", "tokio-util", + "tracing", "typed-builder", "windows-sys 0.61.2", "x25519-dalek", @@ -933,6 +933,37 @@ dependencies = [ "tokio", ] +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + [[package]] name = "typed-builder" version = "0.21.2" diff --git a/wgbridge-rs/Cargo.toml b/wgbridge-rs/Cargo.toml index b442593e3..52c175b97 100644 --- a/wgbridge-rs/Cargo.toml +++ b/wgbridge-rs/Cargo.toml @@ -9,7 +9,7 @@ publish = false crate-type = ["cdylib", "lib"] [dependencies] -gotatun = { version = "=0.7.2", default-features = false, features = ["ring", "device"] } +gotatun = { version = "=0.8.0", default-features = false, features = ["ring", "device"] } tokio = { version = "1.43", features = ["rt-multi-thread", "net", "sync", "time", "macros"] } base64 = "0.22" hex = "0.4"