From 0dd2b2290a7582cd2d063ea31c830dfed2075c6c Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Thu, 17 Oct 2024 15:21:01 +0800 Subject: [PATCH] Bump sea-schema --- sea-orm-cli/Cargo.toml | 2 +- sea-orm-migration/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index 2302d871..32875b0c 100644 --- a/sea-orm-cli/Cargo.toml +++ b/sea-orm-cli/Cargo.toml @@ -38,7 +38,7 @@ clap = { version = "4.3", features = ["env", "derive"], optional = true } dotenvy = { version = "0.15", default-features = false, optional = true } async-std = { version = "1.9", default-features = false, features = ["attributes", "tokio1"], optional = true } sea-orm-codegen = { version = "=1.1.0", path = "../sea-orm-codegen", default-features = false, optional = true } -sea-schema = { version = "0.16.0-rc.1" } +sea-schema = { version = "0.16.0" } sqlx = { version = "0.8.2", default-features = false, features = ["mysql", "postgres"], optional = true } tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt"] } tracing = { version = "0.1", default-features = false } diff --git a/sea-orm-migration/Cargo.toml b/sea-orm-migration/Cargo.toml index a7dfca18..b219d961 100644 --- a/sea-orm-migration/Cargo.toml +++ b/sea-orm-migration/Cargo.toml @@ -25,7 +25,7 @@ clap = { version = "4.3", features = ["env", "derive"], optional = true } dotenvy = { version = "0.15", default-features = false, optional = true } sea-orm = { version = "~1.1.0", path = "../", default-features = false, features = ["macros"] } sea-orm-cli = { version = "~1.1.0", path = "../sea-orm-cli", default-features = false, optional = true } -sea-schema = { version = "0.16.0-rc.1" } +sea-schema = { version = "0.16.0" } tracing = { version = "0.1", default-features = false, features = ["log"] } tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt"] } futures = { version = "0.3", default-features = false, features = ["std"] }