From 234289965d9b98447dc30a236b3c35b723edca46 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 31 Oct 2022 19:34:29 +0000 Subject: [PATCH] cargo upgrade --- Cargo.lock | 21 +++++++++++---------- entities/Cargo.toml | 2 +- migration/Cargo.toml | 2 +- web3_proxy/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a93f99a4..d018a993 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3984,9 +3984,9 @@ dependencies = [ [[package]] name = "sea-orm" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcab4b30f6ba8dffa93ebd9ff60fe9f462b1c6729f66acf3f61600be86cfab2c" +checksum = "c347aacd6bd1b9714fd8b5a6095b7caf4c7d6d3d2fc443c5668512effc52755d" dependencies = [ "async-stream", "async-trait", @@ -4013,12 +4013,13 @@ dependencies = [ [[package]] name = "sea-orm-cli" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "874476cb7e9550e65acdc7deb1df7aeac4bf92ad35c259da0abb5580fab55450" +checksum = "ebf58d870d7748fae01bf0f346972941bf9f30bc25a10504ce32f3fd883ca62b" dependencies = [ "chrono", "clap", + "dotenvy", "regex", "sea-schema", "tracing", @@ -4028,9 +4029,9 @@ dependencies = [ [[package]] name = "sea-orm-macros" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ffc4df1f8caa12f156b57be5d3e32d21c81c8771b44a3a1171cf4f2b1d61355" +checksum = "51235dc3e7330b241a3ca2fcd00c315feffb3f9e3da193c18c01aca369be7ec7" dependencies = [ "bae", "heck 0.3.3", @@ -4041,9 +4042,9 @@ dependencies = [ [[package]] name = "sea-orm-migration" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90d368aa1fef75f0a5b1de62f1f51028d068620c95719b181bdbba0a1e3f3345" +checksum = "f9cc38a41f49640e5460b806766bea5cf66729ee6da9dab8b111a9cf5f6e57b9" dependencies = [ "async-trait", "clap", @@ -4099,9 +4100,9 @@ dependencies = [ [[package]] name = "sea-schema" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a1b18ed3f8bcadf93ca8b299d7204cd70b5272a52bd80550f2405112bc10db7" +checksum = "0a2e6fd7fb2c4adc28f1b8fb29944fa5e6a77968df57f32b7146c9ae10fb2f2b" dependencies = [ "futures", "sea-query", diff --git a/entities/Cargo.toml b/entities/Cargo.toml index 7e4af734..3e8ce886 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.0" +sea-orm = "0.10.1" serde = "1.0.147" uuid = "1.2.1" diff --git a/migration/Cargo.toml b/migration/Cargo.toml index 90283714..3cc6bdd1 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.0" +version = "0.10.1" 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. diff --git a/web3_proxy/Cargo.toml b/web3_proxy/Cargo.toml index b54385bc..57f62876 100644 --- a/web3_proxy/Cargo.toml +++ b/web3_proxy/Cargo.toml @@ -54,7 +54,7 @@ reqwest = { version = "0.11.12", default-features = false, features = ["json", " handlebars = "4.3.5" rustc-hash = "1.1.0" siwe = "0.5.0" -sea-orm = { version = "0.10.0", features = ["macros"] } +sea-orm = { version = "0.10.1", features = ["macros"] } sentry = { version = "0.27.0", default-features = false, features = ["backtrace", "contexts", "panic", "anyhow", "reqwest", "rustls"] } sentry-tracing = "0.27.0" serde = { version = "1.0.147", features = [] }