From 615243f88fb3ad40e49268dbcb023855f5e54e09 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Tue, 6 Feb 2024 14:45:47 +0800 Subject: [PATCH] SeaORM 1.0.0-rc.1 --- Cargo.toml | 4 ++-- examples/demo/Cargo.toml | 2 +- examples/demo/migration/Cargo.toml | 2 +- starters/rest-api/Cargo.toml | 2 +- starters/rest-api/migration/Cargo.toml | 2 +- starters/saas/Cargo.toml | 2 +- starters/saas/migration/Cargo.toml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5c5da0ec7..ee62ce281 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ clap = { version = "4.4.7", features = ["derive"], optional = true } colored = "2" -sea-orm = { version = "0.12.4", features = [ +sea-orm = { version = "1.0.0-rc.1", features = [ "sqlx-postgres", # `DATABASE_DRIVER` feature "sqlx-sqlite", "runtime-tokio-rustls", @@ -119,7 +119,7 @@ socketioxide = { version = "0.10.0", features = ["state"], optional = true } [dependencies.sea-orm-migration] optional = true -version = "0.12.4" +version = "1.0.0-rc.1" features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime. diff --git a/examples/demo/Cargo.toml b/examples/demo/Cargo.toml index de77798e0..0f344ad05 100644 --- a/examples/demo/Cargo.toml +++ b/examples/demo/Cargo.toml @@ -21,7 +21,7 @@ async-trait = "0.1.74" tracing = "0.1.40" chrono = "0.4" validator = { version = "0.16" } -sea-orm = { version = "0.12.4", features = [ +sea-orm = { version = "1.0.0-rc.1", features = [ "sqlx-sqlite", "sqlx-postgres", "runtime-tokio-rustls", diff --git a/examples/demo/migration/Cargo.toml b/examples/demo/migration/Cargo.toml index bd135332a..3ce78dcf2 100644 --- a/examples/demo/migration/Cargo.toml +++ b/examples/demo/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } loco-rs = { version = "*", path = "../../../" } [dependencies.sea-orm-migration] -version = "0.12.6" +version = "1.0.0-rc.1" features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime. diff --git a/starters/rest-api/Cargo.toml b/starters/rest-api/Cargo.toml index d717547e0..01533d99c 100644 --- a/starters/rest-api/Cargo.toml +++ b/starters/rest-api/Cargo.toml @@ -20,7 +20,7 @@ async-trait = "0.1.74" tracing = "0.1.40" chrono = "0.4" validator = { version = "0.16" } -sea-orm = { version = "0.12.4", features = [ +sea-orm = { version = "1.0.0-rc.1", features = [ "sqlx-sqlite", "sqlx-postgres", "runtime-tokio-rustls", diff --git a/starters/rest-api/migration/Cargo.toml b/starters/rest-api/migration/Cargo.toml index 846d9e32f..ffe3f6406 100644 --- a/starters/rest-api/migration/Cargo.toml +++ b/starters/rest-api/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } loco-rs = { version = "0.2.3" } [dependencies.sea-orm-migration] -version = "0.12.4" +version = "1.0.0-rc.1" features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime. diff --git a/starters/saas/Cargo.toml b/starters/saas/Cargo.toml index d717547e0..01533d99c 100644 --- a/starters/saas/Cargo.toml +++ b/starters/saas/Cargo.toml @@ -20,7 +20,7 @@ async-trait = "0.1.74" tracing = "0.1.40" chrono = "0.4" validator = { version = "0.16" } -sea-orm = { version = "0.12.4", features = [ +sea-orm = { version = "1.0.0-rc.1", features = [ "sqlx-sqlite", "sqlx-postgres", "runtime-tokio-rustls", diff --git a/starters/saas/migration/Cargo.toml b/starters/saas/migration/Cargo.toml index 846d9e32f..ffe3f6406 100644 --- a/starters/saas/migration/Cargo.toml +++ b/starters/saas/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } loco-rs = { version = "0.2.3" } [dependencies.sea-orm-migration] -version = "0.12.4" +version = "1.0.0-rc.1" features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.