mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
chore: update sqlx-rt to 0.3
This commit is contained in:
parent
7127357254
commit
efccd6c9b8
5 changed files with 8 additions and 4 deletions
|
@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 0.5.1 - 2020-02-04
|
||||
|
||||
- Update sqlx-rt to 0.3.
|
||||
|
||||
## 0.5.0 - 2020-02-04
|
||||
|
||||
### Changes
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -2456,7 +2456,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "sqlx-rt"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"actix-rt",
|
||||
"async-native-tls",
|
||||
|
|
|
@ -21,7 +21,7 @@ criterion = "0.3.3"
|
|||
dotenv = "0.15.0"
|
||||
once_cell = "1.4"
|
||||
sqlx = { version = "0.5", path = "../", default-features = false }
|
||||
sqlx-rt = { version = "0.2.0", path = "../sqlx-rt", default-features = false }
|
||||
sqlx-rt = { version = "0.3.0", path = "../sqlx-rt", default-features = false }
|
||||
|
||||
[[bench]]
|
||||
name = "pg_pool"
|
||||
|
|
|
@ -55,7 +55,7 @@ offline = [ "serde", "either/serde" ]
|
|||
[dependencies]
|
||||
ahash = "0.6.2"
|
||||
atoi = "0.4.0"
|
||||
sqlx-rt = { path = "../sqlx-rt", version = "0.2.0" }
|
||||
sqlx-rt = { path = "../sqlx-rt", version = "0.3.0" }
|
||||
base64 = { version = "0.13.0", default-features = false, optional = true, features = [ "std" ] }
|
||||
bigdecimal_ = { version = "0.2.0", optional = true, package = "bigdecimal" }
|
||||
rust_decimal = { version = "1.8.1", optional = true }
|
||||
|
|
|
@ -61,7 +61,7 @@ either = "1.5.3"
|
|||
once_cell = { version = "1.5.2", optional = true }
|
||||
proc-macro2 = { version = "1.0.9", default-features = false }
|
||||
sqlx-core = { version = "0.5", default-features = false, path = "../sqlx-core" }
|
||||
sqlx-rt = { version = "0.2.0", default-features = false, path = "../sqlx-rt" }
|
||||
sqlx-rt = { version = "0.3.0", default-features = false, path = "../sqlx-rt" }
|
||||
serde = { version = "1.0.111", features = ["derive"], optional = true }
|
||||
serde_json = { version = "1.0.30", features = ["preserve_order"], optional = true }
|
||||
sha2 = { version = "0.9.1", optional = true }
|
||||
|
|
Loading…
Reference in a new issue