[cli] bump sea-schema to 0.9.3 (SeaQL/sea-orm#876)

This commit is contained in:
Billy Chan 2022-07-20 16:42:59 +08:00
parent e85a859266
commit 018dcdff92
No known key found for this signature in database
GPG Key ID: A2D690CAC7DF3CC7
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ clap = { version = "^3.2", features = ["env", "derive"] }
dotenv = { version = "^0.15" } dotenv = { version = "^0.15" }
async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] } async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] }
sea-orm-codegen = { version = "^0.9.0", path = "../sea-orm-codegen", optional = true } sea-orm-codegen = { version = "^0.9.0", path = "../sea-orm-codegen", optional = true }
sea-schema = { version = "^0.9.2" } sea-schema = { version = "^0.9.3" }
sqlx = { version = "^0.6", default-features = false, features = [ "mysql", "postgres" ], optional = true } sqlx = { version = "^0.6", default-features = false, features = [ "mysql", "postgres" ], optional = true }
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing = { version = "0.1" } tracing = { version = "0.1" }

View File

@ -23,7 +23,7 @@ clap = { version = "^3.2", features = ["env", "derive"] }
dotenv = { version = "^0.15" } dotenv = { version = "^0.15" }
sea-orm = { version = "^0.9.0", path = "../", default-features = false, features = ["macros"] } sea-orm = { version = "^0.9.0", path = "../", default-features = false, features = ["macros"] }
sea-orm-cli = { version = "^0.9.0", path = "../sea-orm-cli", default-features = false } sea-orm-cli = { version = "^0.9.0", path = "../sea-orm-cli", default-features = false }
sea-schema = { version = "^0.9.2" } sea-schema = { version = "^0.9.3" }
tracing = { version = "0.1", features = ["log"] } tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }