From 5be149b9288e3d2a4caecbbda020ff11904a8a6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 20:15:53 +0000 Subject: [PATCH] Update brotli requirement from 3.3 to 4.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/compare/3.3.2...4.0.0) --- 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 11d40b55..0af5b801 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 = "3.3", default-features = false, features = ["std"]} +brotli = { version = "4.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"] }