mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-04-12 23:05:26 +00:00
0.7.0-alpha.2 release
This commit is contained in:
committed by
Austin Bonander
parent
bce16a5c1d
commit
551d622cc1
20
Cargo.toml
20
Cargo.toml
@@ -23,7 +23,7 @@ members = [
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.7.0-alpha.1"
|
||||
version = "0.7.0-alpha.2"
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/launchbadge/sqlx"
|
||||
@@ -114,17 +114,17 @@ regexp = ["sqlx-sqlite?/regexp"]
|
||||
|
||||
[workspace.dependencies]
|
||||
# Core Crates
|
||||
sqlx-core = { version = "=0.7.0-alpha.1", path = "sqlx-core" }
|
||||
sqlx-macros-core = { version = "=0.7.0-alpha.1", path = "sqlx-macros-core" }
|
||||
sqlx-macros = { version = "=0.7.0-alpha.1", path = "sqlx-macros" }
|
||||
sqlx-core = { version = "=0.7.0-alpha.2", path = "sqlx-core" }
|
||||
sqlx-macros-core = { version = "=0.7.0-alpha.2", path = "sqlx-macros-core" }
|
||||
sqlx-macros = { version = "=0.7.0-alpha.2", path = "sqlx-macros" }
|
||||
|
||||
# Driver crates
|
||||
sqlx-mysql = { version = "=0.7.0-alpha.1", path = "sqlx-mysql" }
|
||||
sqlx-postgres = { version = "=0.7.0-alpha.1", path = "sqlx-postgres" }
|
||||
sqlx-sqlite = { version = "=0.7.0-alpha.1", path = "sqlx-sqlite" }
|
||||
sqlx-mysql = { version = "=0.7.0-alpha.2", path = "sqlx-mysql" }
|
||||
sqlx-postgres = { version = "=0.7.0-alpha.2", path = "sqlx-postgres" }
|
||||
sqlx-sqlite = { version = "=0.7.0-alpha.2", path = "sqlx-sqlite" }
|
||||
|
||||
# Facade crate (for reference from sqlx-cli)
|
||||
sqlx = { version = "=0.7.0-alpha.1", path = "." }
|
||||
sqlx = { version = "=0.7.0-alpha.2", path = "." }
|
||||
|
||||
# Common type integrations shared by multiple driver crates.
|
||||
# These are optional unless enabled in a workspace crate.
|
||||
@@ -150,8 +150,8 @@ features = ["time", "net", "sync", "fs", "io-util", "rt"]
|
||||
default-features = false
|
||||
|
||||
[dependencies]
|
||||
sqlx-core = { version = "=0.7.0-alpha.1", path = "sqlx-core", features = ["offline", "migrate"], default-features = false }
|
||||
sqlx-macros = { version = "=0.7.0-alpha.1", path = "sqlx-macros", default-features = false, optional = true }
|
||||
sqlx-core = { workspace = true, features = ["offline", "migrate"], default-features = false }
|
||||
sqlx-macros = { workspace = true, default-features = false, optional = true }
|
||||
|
||||
sqlx-mysql = { workspace = true, optional = true }
|
||||
sqlx-postgres = { workspace = true, optional = true }
|
||||
|
||||
Reference in New Issue
Block a user