upgrade for bugfix

This commit is contained in:
Bryan Stitt 2022-12-23 17:36:51 -08:00
parent 4a837b35cc
commit 9fc789e03d
3 changed files with 10 additions and 10 deletions

16
Cargo.lock generated
View File

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

View File

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

View File

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