Bump base64 version

This commit is contained in:
Jonas Platte 2020-09-30 20:34:03 +02:00 committed by Ryan Leckey
parent e00d8aaa5a
commit 1935e91e7a
2 changed files with 9 additions and 3 deletions

10
Cargo.lock generated
View file

@ -201,6 +201,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 = "bigdecimal"
version = "0.1.2"
@ -1433,7 +1439,7 @@ version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59698ea79df9bf77104aefd39cc3ec990cb9693fb59c3b0a70ddf2646fdffb4b"
dependencies = [
"base64",
"base64 0.12.3",
"once_cell",
"regex",
]
@ -2023,7 +2029,7 @@ name = "sqlx-core"
version = "0.4.0-beta.1"
dependencies = [
"atoi",
"base64",
"base64 0.13.0",
"bigdecimal",
"bit-vec",
"bitflags",

View file

@ -41,7 +41,7 @@ offline = [ "serde", "either/serde" ]
[dependencies]
atoi = "0.3.2"
sqlx-rt = { path = "../sqlx-rt", version = "0.1.1" }
base64 = { version = "0.12.1", default-features = false, optional = true, features = [ "std" ] }
base64 = { version = "0.13.0", default-features = false, optional = true, features = [ "std" ] }
bigdecimal_ = { version = "0.1.0", optional = true, package = "bigdecimal" }
rust_decimal = { version = "1.7.0", optional = true }
bit-vec = { version = "0.6.2", optional = true }