From cd98137ad09f9f1b189ce279d4b723028ab92a60 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Mon, 7 Feb 2022 10:23:40 +0800 Subject: [PATCH] Update examples sea-orm version Update example sea-schema version Update [cli] sea-schema version --- examples/actix4_example/Cargo.toml | 2 +- examples/actix_example/Cargo.toml | 2 +- examples/axum_example/Cargo.toml | 2 +- examples/poem_example/Cargo.toml | 2 +- examples/rocket_example/entity/Cargo.toml | 3 +-- examples/rocket_example/migration/Cargo.toml | 2 +- sea-orm-cli/Cargo.toml | 2 +- sea-orm-cli/template/migration/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 9 deletions(-) diff --git a/examples/actix4_example/Cargo.toml b/examples/actix4_example/Cargo.toml index 711b437f..5477447c 100644 --- a/examples/actix4_example/Cargo.toml +++ b/examples/actix4_example/Cargo.toml @@ -22,7 +22,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.5.0" +version = "^0.6.0" features = ["macros", "runtime-actix-native-tls", "debug-print"] default-features = false diff --git a/examples/actix_example/Cargo.toml b/examples/actix_example/Cargo.toml index 0849a4d4..39bb9e53 100644 --- a/examples/actix_example/Cargo.toml +++ b/examples/actix_example/Cargo.toml @@ -22,7 +22,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.5.0" +version = "^0.6.0" features = ["macros", "runtime-async-std-native-tls", "debug-print"] default-features = false diff --git a/examples/axum_example/Cargo.toml b/examples/axum_example/Cargo.toml index 68248be2..a46e8352 100644 --- a/examples/axum_example/Cargo.toml +++ b/examples/axum_example/Cargo.toml @@ -23,7 +23,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.5.0" +version = "^0.6.0" features = ["macros", "runtime-tokio-native-tls", "debug-print"] default-features = false diff --git a/examples/poem_example/Cargo.toml b/examples/poem_example/Cargo.toml index ef9008c9..5f7dea00 100644 --- a/examples/poem_example/Cargo.toml +++ b/examples/poem_example/Cargo.toml @@ -16,7 +16,7 @@ dotenv = "0.15" [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.5.0" +version = "^0.6.0" features = ["macros", "runtime-tokio-native-tls", "debug-print"] default-features = false diff --git a/examples/rocket_example/entity/Cargo.toml b/examples/rocket_example/entity/Cargo.toml index 9d95b5a6..43af7486 100644 --- a/examples/rocket_example/entity/Cargo.toml +++ b/examples/rocket_example/entity/Cargo.toml @@ -15,8 +15,7 @@ rocket = { version = "0.5.0-rc.1", features = [ [dependencies.sea-orm] # path = "../../../" # remove this line in your own project -git = "https://github.com/SeaQL/sea-orm" -version = "^0.5.0" +version = "^0.6.0" features = [ "macros", "runtime-tokio-native-tls", diff --git a/examples/rocket_example/migration/Cargo.toml b/examples/rocket_example/migration/Cargo.toml index ea539dca..65976c26 100644 --- a/examples/rocket_example/migration/Cargo.toml +++ b/examples/rocket_example/migration/Cargo.toml @@ -9,6 +9,6 @@ name = "migration" path = "src/lib.rs" [dependencies] -sea-schema = { git = "https://github.com/SeaQL/sea-schema.git", default-features = false, features = [ "migration", "debug-print" ] } +sea-schema = { version = "0.5.0", default-features = false, features = [ "migration", "debug-print" ] } entity = { path = "../entity" } rocket = { version = "0.5.0-rc.1" } diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index 0077c8ef..62f53f63 100644 --- a/sea-orm-cli/Cargo.toml +++ b/sea-orm-cli/Cargo.toml @@ -22,7 +22,7 @@ clap = { version = "^2.33.3" } dotenv = { version = "^0.15" } async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] } sea-orm-codegen = { version = "^0.6.0", path = "../sea-orm-codegen" } -sea-schema = { git = "https://github.com/SeaQL/sea-schema.git", default-features = false, features = [ +sea-schema = { version = "0.5.0", default-features = false, features = [ "debug-print", "sqlx-mysql", "sqlx-sqlite", diff --git a/sea-orm-cli/template/migration/Cargo.toml b/sea-orm-cli/template/migration/Cargo.toml index 27f9f512..08db8be1 100644 --- a/sea-orm-cli/template/migration/Cargo.toml +++ b/sea-orm-cli/template/migration/Cargo.toml @@ -9,4 +9,4 @@ name = "migration" path = "src/lib.rs" [dependencies] -sea-schema = { git = "https://github.com/SeaQL/sea-schema.git", default-features = false, features = [ "migration", "debug-print" ] } +sea-schema = { version = "0.5.0", default-features = false, features = [ "migration", "debug-print" ] }