From 9fc789e03d773eb70e099a6debfdb5370668f9fe Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 23 Dec 2022 17:36:51 -0800 Subject: [PATCH] upgrade for bugfix --- Cargo.lock | 16 ++++++++-------- entities/Cargo.toml | 2 +- migration/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74beb3cc..4b072fc6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3977,9 +3977,9 @@ dependencies = [ [[package]] name = "sea-orm" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28fc9dad132e450d6320bd5953e70fb88b42785080b591e9be804da69bd8a170" +checksum = "bc2db217f2061ab2bbb1bd22323a533ace0617f97690919f3ed3894e1b3ba170" dependencies = [ "async-stream", "async-trait", @@ -4005,9 +4005,9 @@ dependencies = [ [[package]] name = "sea-orm-cli" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d037d297869f0960e56f49b6e8c427660f9cc9c3f867132f4d1014676525dbe7" +checksum = "ebcce92f0f804acd10b4378a3c8b0e5fb28f3a9ae9337006bd651baa3a95632c" dependencies = [ "chrono", "clap", @@ -4021,9 +4021,9 @@ dependencies = [ [[package]] name = "sea-orm-macros" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66af5d33e04e56dafb2c700f9b1201a39e6c2c77b53ed9ee93244f21f8de6041" +checksum = "38066057ef1fa17ddc6ce1458cf269862b8f1df919497d110ea127b549a90fbd" dependencies = [ "bae", "heck 0.3.3", @@ -4034,9 +4034,9 @@ dependencies = [ [[package]] name = "sea-orm-migration" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5260d4956cb6ccf49654e6b94ff8030cd8778240627e971cb5a569347b61606" +checksum = "ada716f9825e4190a0a8ebaecbf7171ce0ed6f218ea2e70086bdc72ccfc1d03c" dependencies = [ "async-trait", "clap", diff --git a/entities/Cargo.toml b/entities/Cargo.toml index 84613b15..1639ba98 100644 --- a/entities/Cargo.toml +++ b/entities/Cargo.toml @@ -10,7 +10,7 @@ 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.5" +sea-orm = "0.10.6" serde = "1.0.151" uuid = "1.2.2" ethers = "1.0.2" diff --git a/migration/Cargo.toml b/migration/Cargo.toml index df2983b2..35c5cb18 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -12,7 +12,7 @@ path = "src/lib.rs" tokio = { version = "1.23.0", features = ["full", "tracing"] } [dependencies.sea-orm-migration] -version = "0.10.5" +version = "0.10.6" 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.