diff --git a/Cargo.toml b/Cargo.toml index d792e590..de2eca7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ members = [ [package] name = "sea-schema" -version = "0.4.0" +version = "0.5.0" authors = [ "Chris Tsang " ] edition = "2021" description = "🌿 SQL schema definition and discovery" @@ -37,7 +37,7 @@ path = "src/lib.rs" futures = { version = "0.3", optional = true } sea-schema-derive = { version = "0.1.0", path = "sea-schema-derive" } sea-query = { version = "^0.21.0" } -sea-orm = { git = "https://github.com/SeaQL/sea-orm.git", default-features = false, features = ["macros"], optional = true } +sea-orm = { version = "0.6.0", default-features = false, features = ["macros"], optional = true } clap = { version = "^2.33.3", optional = true } tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true } tracing = { version = "0.1", features = ["log"], optional = true } diff --git a/tests/migration/Cargo.toml b/tests/migration/Cargo.toml index 550176ba..3c1f7886 100644 --- a/tests/migration/Cargo.toml +++ b/tests/migration/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] sea-schema = { path = "../../", default-features = false, features = [ "migration" ] } -sea-orm = { git = "https://github.com/SeaQL/sea-orm.git", branch = "migration", default-features = false, features = ["sqlx-all", "runtime-async-std-native-tls"] } +sea-orm = { version = "0.6.0", default-features = false, features = ["sqlx-all", "runtime-async-std-native-tls"] } [dev-dependencies] env_logger = { version = "^0" }