Merge pull request #35 from matter-labs/base64-0.2

chore(deps): update rust crate base64 to 0.22.0
This commit is contained in:
Harald Hoyer 2024-03-05 11:18:54 +01:00 committed by GitHub
commit 90764ed645
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 8 deletions

View file

@ -57,7 +57,7 @@ jobs:
uses: DeterminateSystems/magic-nix-cache-action@main uses: DeterminateSystems/magic-nix-cache-action@main
- name: cargo clippy - name: cargo clippy
run: nix develop -L --ignore-environment -c cargo clippy --all --locked run: nix develop -L --ignore-environment -c cargo clippy --all
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest

18
Cargo.lock generated
View file

@ -31,7 +31,7 @@ dependencies = [
"actix-tls", "actix-tls",
"actix-utils", "actix-utils",
"ahash", "ahash",
"base64", "base64 0.21.7",
"bitflags 2.4.2", "bitflags 2.4.2",
"brotli", "brotli",
"bytes", "bytes",
@ -313,7 +313,7 @@ dependencies = [
"actix-service", "actix-service",
"actix-tls", "actix-tls",
"actix-utils", "actix-utils",
"base64", "base64 0.21.7",
"bytes", "bytes",
"cfg-if", "cfg-if",
"cookie", "cookie",
@ -362,6 +362,12 @@ version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
name = "base64"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
[[package]] [[package]]
name = "base64ct" name = "base64ct"
version = "1.6.0" version = "1.6.0"
@ -1767,7 +1773,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "031fa1e28c4cb54c90502ef0642a44ef10ec8349349ebe6372089f1b1ef4f297" checksum = "031fa1e28c4cb54c90502ef0642a44ef10ec8349349ebe6372089f1b1ef4f297"
dependencies = [ dependencies = [
"aes", "aes",
"base64", "base64 0.21.7",
"bitfield", "bitfield",
"block-padding", "block-padding",
"blowfish", "blowfish",
@ -2239,7 +2245,7 @@ version = "3.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15d167997bd841ec232f5b2b8e0e26606df2e7caa4c31b95ea9ca52b200bd270" checksum = "15d167997bd841ec232f5b2b8e0e26606df2e7caa4c31b95ea9ca52b200bd270"
dependencies = [ dependencies = [
"base64", "base64 0.21.7",
"chrono", "chrono",
"hex", "hex",
"indexmap 1.9.3", "indexmap 1.9.3",
@ -2508,7 +2514,7 @@ dependencies = [
"actix-web", "actix-web",
"anyhow", "anyhow",
"awc", "awc",
"base64", "base64 0.22.0",
"bytemuck", "bytemuck",
"bytes", "bytes",
"clap", "clap",
@ -2918,7 +2924,7 @@ version = "0.1.0"
dependencies = [ dependencies = [
"actix-web", "actix-web",
"anyhow", "anyhow",
"base64", "base64 0.22.0",
"clap", "clap",
"serde_json", "serde_json",
"teepot", "teepot",

View file

@ -67,7 +67,7 @@ actix-tls = "3"
actix-web = { version = "4.5", features = ["rustls-0_22"] } actix-web = { version = "4.5", features = ["rustls-0_22"] }
anyhow = "1.0.80" anyhow = "1.0.80"
awc = { version = "3.4", features = ["rustls-0_22-webpki-roots"] } awc = { version = "3.4", features = ["rustls-0_22-webpki-roots"] }
base64 = "0.21.7" base64 = "0.22.0"
bitflags = "2.4" bitflags = "2.4"
bytemuck = { version = "1.14.3", features = ["derive", "min_const_generics", "extern_crate_std"] } bytemuck = { version = "1.14.3", features = ["derive", "min_const_generics", "extern_crate_std"] }
bytes = "1" bytes = "1"