mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-04 08:15:39 +00:00
release: v0.4.2
This commit is contained in:
parent
46d30d2b5c
commit
565d0a91a3
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -2479,7 +2479,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlx"
|
name = "sqlx"
|
||||||
version = "0.4.1"
|
version = "0.4.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-std",
|
"async-std",
|
||||||
@ -2535,7 +2535,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlx-core"
|
name = "sqlx-core"
|
||||||
version = "0.4.0"
|
version = "0.4.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash 0.6.2",
|
"ahash 0.6.2",
|
||||||
"atoi",
|
"atoi",
|
||||||
@ -2658,7 +2658,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlx-macros"
|
name = "sqlx-macros"
|
||||||
version = "0.4.0"
|
version = "0.4.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cargo_metadata 0.12.1",
|
"cargo_metadata 0.12.1",
|
||||||
"dotenv",
|
"dotenv",
|
||||||
|
@ -17,7 +17,7 @@ members = [
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sqlx"
|
name = "sqlx"
|
||||||
version = "0.4.1"
|
version = "0.4.2"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/launchbadge/sqlx"
|
repository = "https://github.com/launchbadge/sqlx"
|
||||||
@ -94,8 +94,8 @@ bstr = [ "sqlx-core/bstr" ]
|
|||||||
git2 = [ "sqlx-core/git2" ]
|
git2 = [ "sqlx-core/git2" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sqlx-core = { version = "=0.4.0", path = "sqlx-core", default-features = false }
|
sqlx-core = { version = "=0.4.2", path = "sqlx-core", default-features = false }
|
||||||
sqlx-macros = { version = "=0.4.0", path = "sqlx-macros", default-features = false, optional = true }
|
sqlx-macros = { version = "=0.4.2", path = "sqlx-macros", default-features = false, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow = "1.0.31"
|
anyhow = "1.0.31"
|
||||||
|
@ -113,9 +113,9 @@ SQLx is compatible with the [`async-std`], [`tokio`] and [`actix`] runtimes; and
|
|||||||
# Cargo.toml
|
# Cargo.toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# tokio + rustls
|
# tokio + rustls
|
||||||
sqlx = { version = "0.4.0", features = [ "runtime-tokio-rustls" ] }
|
sqlx = { version = "0.4.2", features = [ "runtime-tokio-rustls" ] }
|
||||||
# async-std + native-tls
|
# async-std + native-tls
|
||||||
sqlx = { version = "0.4.0", features = [ "runtime-async-std-native-tls" ] }
|
sqlx = { version = "0.4.2", features = [ "runtime-async-std-native-tls" ] }
|
||||||
```
|
```
|
||||||
|
|
||||||
<sub><sup>The runtime and TLS backend not being separate feature sets to select is a workaround for a [Cargo issue](https://github.com/rust-lang/cargo/issues/3494).</sup></sub>
|
<sub><sup>The runtime and TLS backend not being separate feature sets to select is a workaround for a [Cargo issue](https://github.com/rust-lang/cargo/issues/3494).</sup></sub>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sqlx-core"
|
name = "sqlx-core"
|
||||||
version = "0.4.0"
|
version = "0.4.2"
|
||||||
repository = "https://github.com/launchbadge/sqlx"
|
repository = "https://github.com/launchbadge/sqlx"
|
||||||
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
|
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sqlx-macros"
|
name = "sqlx-macros"
|
||||||
version = "0.4.0"
|
version = "0.4.2"
|
||||||
repository = "https://github.com/launchbadge/sqlx"
|
repository = "https://github.com/launchbadge/sqlx"
|
||||||
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
|
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
@ -61,7 +61,7 @@ heck = "0.3.1"
|
|||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
proc-macro2 = { version = "1.0.9", default-features = false }
|
proc-macro2 = { version = "1.0.9", default-features = false }
|
||||||
sqlx-core = { version = "0.4.0", default-features = false, path = "../sqlx-core" }
|
sqlx-core = { version = "0.4.2", default-features = false, path = "../sqlx-core" }
|
||||||
sqlx-rt = { version = "0.2.0", default-features = false, path = "../sqlx-rt" }
|
sqlx-rt = { version = "0.2.0", default-features = false, path = "../sqlx-rt" }
|
||||||
serde = { version = "1.0.111", optional = true }
|
serde = { version = "1.0.111", optional = true }
|
||||||
serde_json = { version = "1.0.30", features = [ "preserve_order" ], optional = true }
|
serde_json = { version = "1.0.30", features = [ "preserve_order" ], optional = true }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user