Update examples sea-orm version

Update example sea-schema version

Update [cli] sea-schema version
This commit is contained in:
Billy Chan 2022-02-07 10:23:40 +08:00 committed by Chris Tsang
parent d541f9e6ec
commit cd98137ad0
8 changed files with 8 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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",

View File

@ -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" }

View File

@ -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",

View File

@ -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" ] }