Update base64 to the latest version

This commit is contained in:
Jeremy Wall 2022-12-31 17:44:36 -06:00
parent dcc574ca60
commit ea2eb92a99
2 changed files with 13 additions and 7 deletions

18
Cargo.lock generated
View File

@ -165,7 +165,7 @@ dependencies = [
"anyhow",
"async-lock",
"async-trait",
"base64",
"base64 0.13.1",
"bincode",
"blake3",
"chrono",
@ -292,7 +292,7 @@ checksum = "f9770f9a9147b2324066609acb5495538cb25f973129663fba2658ba7ed69407"
dependencies = [
"async-trait",
"axum-core",
"base64",
"base64 0.13.1",
"http",
]
@ -318,6 +318,12 @@ version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "base64"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5"
[[package]]
name = "base64ct"
version = "1.5.2"
@ -1058,7 +1064,7 @@ version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cff78e5788be1e0ab65b04d306b2ed5092c815ec97ec70f4ebd5aee158aa55d"
dependencies = [
"base64",
"base64 0.13.1",
"bitflags",
"bytes",
"headers-core",
@ -1303,7 +1309,7 @@ version = "0.2.12"
dependencies = [
"api",
"async-trait",
"base64",
"base64 0.20.0",
"chrono",
"console_error_panic_hook",
"recipes",
@ -1825,7 +1831,7 @@ version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
dependencies = [
"base64",
"base64 0.13.1",
]
[[package]]
@ -2390,7 +2396,7 @@ version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c530c8675c1dbf98facee631536fa116b5fb6382d7dd6dc1b118d970eafe3ba"
dependencies = [
"base64",
"base64 0.13.1",
"bitflags",
"bytes",
"futures-core",

View File

@ -20,7 +20,7 @@ console_error_panic_hook = "0.1.7"
serde_json = "1.0.79"
tracing = "0.1.35"
async-trait = "0.1.57"
base64 = "0.13.0"
base64 = "0.20.0"
sycamore-router = "0.8"
[dependencies.tracing-subscriber]