From e1080a0cafa9663dd2c87660eaa7f6a3ddcea398 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 3 Mar 2025 17:34:40 +0200 Subject: [PATCH] tracers: Update to etherparse 0.17 Part-of: --- .gitlab-ci.yml | 3 +-- Cargo.lock | 4 ++-- utils/tracers/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7cb0af77e..700504db5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -383,12 +383,11 @@ outdated: - if: '$CI_PIPELINE_SOURCE == "schedule"' script: - cargo update --color=always - # etherparse 0.17 requires Rust 1.81 or newer # libwebp-sys 0.2 requires Rust 1.85 or newer # aws-smithy-http 0.62 requires Rust 1.85 or newer # aws-config, aws-sigv4 and aws-sdk-s3 need the above crate # remaining aws crates need fix for https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2199#note_2870463 (unpin all aws related version ranges) - - cargo outdated --color=always --root-deps-only --ignore etherparse --ignore libwebp-sys2 --ignore aws-smithy-http,aws-config,aws-sdk-polly,aws-sdk-s3,aws-sdk-transcribestreaming,aws-sdk-translate,aws-sigv4,aws-sdk-kinesisvideo,aws-sdk-kinesisvideosignaling --exit-code 1 -v + - cargo outdated --color=always --root-deps-only --ignore libwebp-sys2 --ignore aws-smithy-http,aws-config,aws-sdk-polly,aws-sdk-s3,aws-sdk-transcribestreaming,aws-sdk-translate,aws-sigv4,aws-sdk-kinesisvideo,aws-sdk-kinesisvideosignaling --exit-code 1 -v coverage: allow_failure: true diff --git a/Cargo.lock b/Cargo.lock index 97b168a2f..b7d70e6c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1925,9 +1925,9 @@ dependencies = [ [[package]] name = "etherparse" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8d8a704b617484e9d867a0423cd45f7577f008c4068e2e33378f8d3860a6d73" +checksum = "b14e4ac78394e3ea04edbbc412099cf54f2f52ded51efb79c466a282729399d2" dependencies = [ "arrayvec", ] diff --git a/utils/tracers/Cargo.toml b/utils/tracers/Cargo.toml index 4e8b9f608..c30957520 100644 --- a/utils/tracers/Cargo.toml +++ b/utils/tracers/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1" regex = "1" atomic_refcell = "0.1" pcap-file = "2" -etherparse = "0.16.0" +etherparse = "0.17.0" chrono = "0.4.35" walkdir = "2" tokio = { version = "1", features = ["macros", "rt-multi-thread"] }