From 7192d083d764f8ae9e76d28bbd607bcb0e2516f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 09:18:04 +0200 Subject: [PATCH] Bump the rust-minor-patch group with 2 updates (#110) Bumps the rust-minor-patch group with 2 updates: [sea-orm](https://github.com/SeaQL/sea-orm) and [sea-orm-migration](https://github.com/SeaQL/sea-orm). Updates `sea-orm` from 0.12.2 to 0.12.3 - [Release notes](https://github.com/SeaQL/sea-orm/releases) - [Changelog](https://github.com/SeaQL/sea-orm/blob/master/CHANGELOG.md) - [Commits](https://github.com/SeaQL/sea-orm/compare/0.12.2...0.12.3) Updates `sea-orm-migration` from 0.12.2 to 0.12.3 - [Release notes](https://github.com/SeaQL/sea-orm/releases) - [Changelog](https://github.com/SeaQL/sea-orm/blob/master/CHANGELOG.md) - [Commits](https://github.com/SeaQL/sea-orm/compare/0.12.2...0.12.3) --- updated-dependencies: - dependency-name: sea-orm dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-minor-patch - dependency-name: sea-orm-migration dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-minor-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 2 +- migration/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1cd6096..b06bf25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2165,9 +2165,9 @@ dependencies = [ [[package]] name = "sea-orm" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61f6c7daef05dde3476d97001e11fca7a52b655aa3bf4fd610ab2da1176a2ed5" +checksum = "da5b2d70c255bc5cbe1d49f69c3c8eadae0fbbaeb18ee978edbf2f75775cb94d" dependencies = [ "async-stream", "async-trait", @@ -2189,9 +2189,9 @@ dependencies = [ [[package]] name = "sea-orm-cli" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e3f0ff2fa5672e2e7314d107c6498a18e469beeb340a0ed84e3075fce73c2cd" +checksum = "6bef60732e6016c5643350c87f43a697e8c074e41e4e2a9d961c056cb1310915" dependencies = [ "chrono", "clap", @@ -2206,9 +2206,9 @@ dependencies = [ [[package]] name = "sea-orm-macros" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd90e73d5f5b184bad525767da29fbfec132b4e62ebd6f60d2f2737ec6468f62" +checksum = "d7c8d455fad40194fb9774fdc4810c0f2700ff0dc0e93bd5ce9d641cc3f5dd75" dependencies = [ "heck", "proc-macro2", @@ -2220,9 +2220,9 @@ dependencies = [ [[package]] name = "sea-orm-migration" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21f673fcefb3a7e7b89a12b6c0e854ec0be14367635ac3435369c8ad7f11e09e" +checksum = "7e53b6ddaf6dbb84e5dfc3fb78634ed0a4d6d64e7479500ab2585db239747031" dependencies = [ "async-trait", "clap", @@ -2237,9 +2237,9 @@ dependencies = [ [[package]] name = "sea-query" -version = "0.30.0" +version = "0.30.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6aeb899964df7038e7274306b742951b82a04f835bca8a4683a4c254a6bf35fa" +checksum = "fb3e6bba153bb198646c8762c48414942a38db27d142e44735a133cabddcc820" dependencies = [ "chrono", "derivative", @@ -2276,9 +2276,9 @@ dependencies = [ [[package]] name = "sea-schema" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3e09eb40c78cee8fef8dfbb648036a26b7ad1f618499203ad0e8b6f97593f7f" +checksum = "0cd9561232bd1b82ea748b581f15909d11de0db6563ddcf28c5d908aee8282f1" dependencies = [ "futures", "sea-query", diff --git a/Cargo.toml b/Cargo.toml index 6718805..22aad5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ redis = { version = "0.23.3", default-features = false, features = ["tokio-comp" reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls", "blocking", "json"] } sandkasten-client = { version = "0.1.6", default-features = false, features = ["reqwest", "poem-openapi"] } schemas = { version = "0.1.0", path = "./schemas" } -sea-orm = { version = "0.12.2", default-features = false, features = ["sqlx-postgres", "runtime-tokio-rustls", "macros", "with-uuid", "with-chrono", "postgres-array"] } +sea-orm = { version = "0.12.3", default-features = false, features = ["sqlx-postgres", "runtime-tokio-rustls", "macros", "with-uuid", "with-chrono", "postgres-array"] } serde = { version = "1.0.188", default-features = false, features = ["derive"] } serde_json = { version = "1.0.107", default-features = false } sha2 = { version = "0.10.7", default-features = false } diff --git a/migration/Cargo.toml b/migration/Cargo.toml index 48f30fd..2c1b802 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -7,5 +7,5 @@ publish = false [dependencies] lib = { workspace = true } sea-orm = { workspace = true } -sea-orm-migration = { version = "0.12.2", default-features = false, features = ["sqlx-postgres", "runtime-tokio-rustls", "cli", "with-uuid", "with-chrono" ] } +sea-orm-migration = { version = "0.12.3", default-features = false, features = ["sqlx-postgres", "runtime-tokio-rustls", "cli", "with-uuid", "with-chrono" ] } tokio = { workspace = true }