mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
fix: rollback another update for async-rustls
This commit is contained in:
parent
2d3b9e4909
commit
46d30d2b5c
2 changed files with 6 additions and 19 deletions
23
Cargo.lock
generated
23
Cargo.lock
generated
|
@ -194,12 +194,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "async-rustls"
|
||||
version = "0.2.0"
|
||||
version = "0.1.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9c86f33abd5a4f3e2d6d9251a9e0c6a7e52eb1113caf893dae8429bf4a53f378"
|
||||
checksum = "7f38092e8f467f47aadaff680903c7cbfeee7926b058d7f40af2dd4c878fbdee"
|
||||
dependencies = [
|
||||
"futures-lite",
|
||||
"rustls 0.19.0",
|
||||
"rustls",
|
||||
"webpki",
|
||||
]
|
||||
|
||||
|
@ -2219,19 +2219,6 @@ dependencies = [
|
|||
"webpki",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustls"
|
||||
version = "0.19.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "064fd21ff87c6e87ed4506e68beb42459caa4a0e2eb144932e6776768556980b"
|
||||
dependencies = [
|
||||
"base64 0.13.0",
|
||||
"log",
|
||||
"ring",
|
||||
"sct",
|
||||
"webpki",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ryu"
|
||||
version = "1.0.5"
|
||||
|
@ -2590,7 +2577,7 @@ dependencies = [
|
|||
"regex",
|
||||
"rsa",
|
||||
"rust_decimal",
|
||||
"rustls 0.18.1",
|
||||
"rustls",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"sha-1 0.9.2",
|
||||
|
@ -3089,7 +3076,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "e12831b255bcfa39dc0436b01e19fea231a37db570686c06ee72c423479f889a"
|
||||
dependencies = [
|
||||
"futures-core",
|
||||
"rustls 0.18.1",
|
||||
"rustls",
|
||||
"tokio",
|
||||
"webpki",
|
||||
]
|
||||
|
|
|
@ -28,7 +28,7 @@ _tls-rustls = [ ]
|
|||
|
||||
[dependencies]
|
||||
async-native-tls = { version = "0.3.3", optional = true }
|
||||
async-rustls = { version = "0.2.0", optional = true }
|
||||
async-rustls = { version = "0.1.0", optional = true }
|
||||
actix-rt = { version = "1.1.1", optional = true }
|
||||
actix-threadpool = { version = "0.3.2", optional = true }
|
||||
async-std = { version = "1.6.5", features = [ "unstable" ], optional = true }
|
||||
|
|
Loading…
Reference in a new issue