Bump base64 version

This commit is contained in:
Antoine Gersant 2020-12-07 23:30:51 -08:00
parent b709a8cd64
commit 1ebc0d9f44
2 changed files with 8 additions and 2 deletions

8
Cargo.lock generated
View file

@ -168,6 +168,12 @@ version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
version = "1.2.1"
@ -1797,7 +1803,7 @@ version = "0.12.4"
dependencies = [
"anyhow",
"ape",
"base64 0.12.3",
"base64 0.13.0",
"cookie 0.14.3",
"crossbeam-channel 0.4.4",
"diesel",

View file

@ -12,7 +12,7 @@ service-rocket = ["rocket", "rocket_contrib"]
[dependencies]
anyhow = "1.0.35"
ape = "0.3.0"
base64 = "0.12.1"
base64 = "0.13"
crossbeam-channel = "0.4"
diesel_migrations = { version = "1.4", features = ["sqlite"] }
getopts = "0.2.15"