diff --git a/Cargo.toml b/Cargo.toml index 8fc5401d7e..b9272f74a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ sea-query = { version = "^0.24.5", features = ["thread-safe"] } sea-strum = { version = "^0.23", features = ["derive", "sea-orm"] } serde = { version = "^1.0", features = ["derive"] } serde_json = { version = "^1", optional = true } -sqlx = { version = "^0.5", optional = true } +sqlx = { version = "^0.8", optional = true } uuid = { version = "0.8", features = ["serde", "v4"], optional = true } ouroboros = "0.15" url = "^2.2" diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index 7f5c41c69c..5de8abd6c4 100644 --- a/sea-orm-cli/Cargo.toml +++ b/sea-orm-cli/Cargo.toml @@ -34,7 +34,7 @@ dotenv = { version = "^0.15" } async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] } sea-orm-codegen = { version = "^0.8.0", path = "../sea-orm-codegen", optional = true } sea-schema = { version = "^0.8.1" } -sqlx = { version = "^0.5", default-features = false, features = [ "mysql", "postgres" ], optional = true } +sqlx = { version = "^0.8", default-features = false, features = [ "mysql", "postgres" ], optional = true } tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing = { version = "0.1" } url = "^2.2"