mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
Prepare v0.2.6
This commit is contained in:
parent
d15853f105
commit
05bc3ba987
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -1454,15 +1454,15 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "sqlx"
|
||||
version = "0.2.5"
|
||||
version = "0.2.6"
|
||||
dependencies = [
|
||||
"anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"async-std 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"dotenv 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"sqlx-core 0.2.5",
|
||||
"sqlx-macros 0.2.4",
|
||||
"sqlx-core 0.2.6",
|
||||
"sqlx-macros 0.2.5",
|
||||
"tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"trybuild 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
@ -1495,7 +1495,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "sqlx-core"
|
||||
version = "0.2.5"
|
||||
version = "0.2.6"
|
||||
dependencies = [
|
||||
"async-native-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"async-std 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -1539,7 +1539,7 @@ dependencies = [
|
||||
"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rust-argon2 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"sqlx 0.2.5",
|
||||
"sqlx 0.2.6",
|
||||
"tide 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
@ -1560,7 +1560,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "sqlx-macros"
|
||||
version = "0.2.4"
|
||||
version = "0.2.5"
|
||||
dependencies = [
|
||||
"async-std 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"dotenv 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -1568,7 +1568,7 @@ dependencies = [
|
||||
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"sqlx-core 0.2.5",
|
||||
"sqlx-core 0.2.6",
|
||||
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -9,7 +9,7 @@ members = [
|
||||
|
||||
[package]
|
||||
name = "sqlx"
|
||||
version = "0.2.5"
|
||||
version = "0.2.6"
|
||||
license = "MIT OR Apache-2.0"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/launchbadge/sqlx"
|
||||
@ -47,8 +47,8 @@ chrono = [ "sqlx-core/chrono", "sqlx-macros/chrono" ]
|
||||
uuid = [ "sqlx-core/uuid", "sqlx-macros/uuid" ]
|
||||
|
||||
[dependencies]
|
||||
sqlx-core = { version = "0.2.5", path = "sqlx-core", default-features = false }
|
||||
sqlx-macros = { version = "0.2.4", path = "sqlx-macros", default-features = false, optional = true }
|
||||
sqlx-core = { version = "0.2.6", path = "sqlx-core", default-features = false }
|
||||
sqlx-macros = { version = "0.2.5", path = "sqlx-macros", default-features = false, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
anyhow = "1.0.26"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sqlx-core"
|
||||
version = "0.2.5"
|
||||
version = "0.2.6"
|
||||
repository = "https://github.com/launchbadge/sqlx"
|
||||
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sqlx-macros"
|
||||
version = "0.2.4"
|
||||
version = "0.2.5"
|
||||
repository = "https://github.com/launchbadge/sqlx"
|
||||
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
|
||||
license = "MIT OR Apache-2.0"
|
||||
@ -35,7 +35,7 @@ tokio = { version = "0.2.9", default-features = false, features = [ "rt-threaded
|
||||
dotenv = { version = "0.15.0", default-features = false }
|
||||
futures = { version = "0.3.1", default-features = false, features = [ "executor" ] }
|
||||
proc-macro2 = { version = "1.0.7", default-features = false }
|
||||
sqlx = { version = "0.2.5", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
|
||||
sqlx = { version = "0.2.6", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
|
||||
syn = { version = "1.0.13", default-features = false, features = [ "full" ] }
|
||||
quote = { version = "1.0.2", default-features = false }
|
||||
url = { version = "2.1.1", default-features = false }
|
||||
|
Loading…
x
Reference in New Issue
Block a user