From 7993b84f454bd53e95a496c519ed206366f72185 Mon Sep 17 00:00:00 2001 From: fan-tastic-z Date: Wed, 29 May 2024 20:17:57 +0800 Subject: [PATCH] build: update sea-orm to 1.0.0-rc.4 --- Cargo.toml | 2 +- migration/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 041ea7a..8816228 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ chrono = { version = "0.4", features = ["serde"] } async-trait = "0.1.74" -sea-orm = { version = "1.0.0-rc.3", features = [ +sea-orm = { version = "1.0.0-rc.4", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros", diff --git a/migration/Cargo.toml b/migration/Cargo.toml index 65dbf6b..a972bb3 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -12,11 +12,11 @@ path = "src/lib.rs" async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] -version = "1.0.0-rc.3" +version = "1.0.0-rc.4" 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. # e.g. - "runtime-tokio-rustls", # `ASYNC_RUNTIME` feature - "sqlx-postgres", # `DATABASE_DRIVER` feature + "runtime-tokio-rustls", # `ASYNC_RUNTIME` feature + "sqlx-postgres", # `DATABASE_DRIVER` feature ]