From 1c87ac7186ae09a866763723dd45c5e0fc5e9a57 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 20:35:22 +0000 Subject: [PATCH] Update brotli requirement from 6.0 to 7.0 Updates the requirements on [brotli](https://github.com/dropbox/rust-brotli) to permit the latest version. - [Release notes](https://github.com/dropbox/rust-brotli/releases) - [Commits](https://github.com/dropbox/rust-brotli/commits) --- updated-dependencies: - dependency-name: brotli dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- mla/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mla/Cargo.toml b/mla/Cargo.toml index f9ebbb3f..20151f70 100644 --- a/mla/Cargo.toml +++ b/mla/Cargo.toml @@ -14,7 +14,7 @@ readme = "../README.md" [dependencies] rand = { version = "0.8", default-features = false, features = ["getrandom", "std"]} rand_chacha = { version = "0.3", default-features = false} -brotli = { version = "6.0", default-features = false, features = ["std"]} +brotli = { version = "7.0", default-features = false, features = ["std"]} bitflags = { version = "2.1", default-features = false, features = ["serde"]} byteorder = { version = "1.3", default-features = false, features = ["std"] } serde = { version = "1", default-features = false, features = ["derive"] }