diff --git a/Cargo.lock b/Cargo.lock index f1e24491..6f373267 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3884,9 +3884,9 @@ dependencies = [ [[package]] name = "sea-orm" -version = "0.10.2" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75f0afff0dd7581c8cc88b35fdd42d207f379ce5cfc5a88e65b5aa95e0ec3d3f" +checksum = "8744afc95ca462de12c2cea5a56d7e406f3be2b2683d3b05066e1afdba898bc5" dependencies = [ "async-stream", "async-trait", @@ -3894,7 +3894,6 @@ dependencies = [ "futures", "futures-util", "log", - "once_cell", "ouroboros", "rust_decimal", "sea-orm-macros", @@ -3913,9 +3912,9 @@ dependencies = [ [[package]] name = "sea-orm-cli" -version = "0.10.2" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "882af0d4cd3d6cc2f427d14a48e9f468b37c563b405ea486fd314ba18ca334d0" +checksum = "531871fd7d043270d6c26071d48bbdc2e04058e570adf7a8a75d9063c96771e9" dependencies = [ "chrono", "clap", @@ -3929,9 +3928,9 @@ dependencies = [ [[package]] name = "sea-orm-macros" -version = "0.10.2" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d1c53d3ed30403f210ef8a67da9d929a4d07a91b6478ae3ab827d2d91b88a84" +checksum = "4ca4d01381fdcabc3818b6d39c5f1f0c885900af90da638e4001406907462784" dependencies = [ "bae", "heck 0.3.3", @@ -3942,9 +3941,9 @@ dependencies = [ [[package]] name = "sea-orm-migration" -version = "0.10.2" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86fe6e594b078712e1e797b951b9b56e55d3cfa04aac8ea76eb4bed7c94c5910" +checksum = "0e73a6b3823f2d02b09e16060a2d547c781557f756755b80f413679bdb2a149e" dependencies = [ "async-trait", "clap", diff --git a/entities/Cargo.toml b/entities/Cargo.toml index 2142e104..e9d63bd1 100644 --- a/entities/Cargo.toml +++ b/entities/Cargo.toml @@ -10,6 +10,6 @@ path = "src/mod.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -sea-orm = "0.10.2" +sea-orm = "0.10.3" serde = "1.0.147" uuid = "1.2.1" diff --git a/migration/Cargo.toml b/migration/Cargo.toml index 43189ce8..a1ded5ae 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -12,7 +12,7 @@ path = "src/lib.rs" tokio = { version = "1.21.2", features = ["full", "tracing"] } [dependencies.sea-orm-migration] -version = "0.10.2" +version = "0.10.3" features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.