mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-02 17:53:48 +00:00
tracers: Update to etherparse 0.17
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2213>
This commit is contained in:
parent
f376d3c1cd
commit
e1080a0caf
3 changed files with 4 additions and 5 deletions
|
@ -383,12 +383,11 @@ outdated:
|
||||||
- if: '$CI_PIPELINE_SOURCE == "schedule"'
|
- if: '$CI_PIPELINE_SOURCE == "schedule"'
|
||||||
script:
|
script:
|
||||||
- cargo update --color=always
|
- cargo update --color=always
|
||||||
# etherparse 0.17 requires Rust 1.81 or newer
|
|
||||||
# libwebp-sys 0.2 requires Rust 1.85 or newer
|
# libwebp-sys 0.2 requires Rust 1.85 or newer
|
||||||
# aws-smithy-http 0.62 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
|
# 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)
|
# 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:
|
coverage:
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1925,9 +1925,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "etherparse"
|
name = "etherparse"
|
||||||
version = "0.16.0"
|
version = "0.17.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b8d8a704b617484e9d867a0423cd45f7577f008c4068e2e33378f8d3860a6d73"
|
checksum = "b14e4ac78394e3ea04edbbc412099cf54f2f52ded51efb79c466a282729399d2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
]
|
]
|
||||||
|
|
|
@ -14,7 +14,7 @@ anyhow = "1"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
atomic_refcell = "0.1"
|
atomic_refcell = "0.1"
|
||||||
pcap-file = "2"
|
pcap-file = "2"
|
||||||
etherparse = "0.16.0"
|
etherparse = "0.17.0"
|
||||||
chrono = "0.4.35"
|
chrono = "0.4.35"
|
||||||
walkdir = "2"
|
walkdir = "2"
|
||||||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
||||||
|
|
Loading…
Reference in a new issue