From 26a272e50d01b09bd6b7fe2de3c95745d81ccff3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jun 2023 04:01:41 +0000 Subject: [PATCH] chore(deps): bump uuid from 1.3.0 to 1.3.4 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.3.0 to 1.3.4. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.3.0...1.3.4) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- protocol/hls/Cargo.toml | 2 +- protocol/httpflv/Cargo.toml | 2 +- protocol/rtmp/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 389dac2..b1a2914 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2048,9 +2048,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.3.0" +version = "1.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" +checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81" dependencies = [ "getrandom", ] diff --git a/protocol/hls/Cargo.toml b/protocol/hls/Cargo.toml index ec46d59..9caead6 100644 --- a/protocol/hls/Cargo.toml +++ b/protocol/hls/Cargo.toml @@ -16,7 +16,7 @@ byteorder = "^1" bytes = "^1" failure = "^0.1" tracing = "^0.1" -uuid = { version = "^1.2", features = ["v4"] } +uuid = { version = "^1.3", features = ["v4"] } url = "^2" xflv = {path = "../../library/container/flv/"} diff --git a/protocol/httpflv/Cargo.toml b/protocol/httpflv/Cargo.toml index cf81414..c82be69 100644 --- a/protocol/httpflv/Cargo.toml +++ b/protocol/httpflv/Cargo.toml @@ -15,7 +15,7 @@ byteorder = "1.4.2" bytes = "1.0.0" failure = "0.1.1" tracing = "^0.1" -uuid = { version = "^1.2", features = ["v4"] } +uuid = { version = "^1.3", features = ["v4"] } xflv = {path = "../../library/container/flv/"} rtmp = {path = "../rtmp/"}#"0.0.4" diff --git a/protocol/rtmp/Cargo.toml b/protocol/rtmp/Cargo.toml index 8c8668f..b58a4ba 100644 --- a/protocol/rtmp/Cargo.toml +++ b/protocol/rtmp/Cargo.toml @@ -17,7 +17,7 @@ rand = "^0.6" failure = "^0.1" hmac = "^0.12" sha2 = "^0.10" -uuid = { version = "^1.2", features = ["v4"] } +uuid = { version = "^1.3", features = ["v4"] } tokio-util = { version = "^0.7", features = ["codec"] } hyper = { version = "^0.14", features = ["full"] } serde_derive = "1"