From ebfef875511ba100e68144dc0840bd5f3cb6f5a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Feb 2024 01:04:44 +0000 Subject: [PATCH] build(deps): bump sea-orm from 0.12.12 to 0.12.14 Bumps [sea-orm](https://github.com/SeaQL/sea-orm) from 0.12.12 to 0.12.14. - [Release notes](https://github.com/SeaQL/sea-orm/releases) - [Changelog](https://github.com/SeaQL/sea-orm/blob/0.12.14/CHANGELOG.md) - [Commits](https://github.com/SeaQL/sea-orm/compare/0.12.12...0.12.14) --- updated-dependencies: - dependency-name: sea-orm dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- entity/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ca5b511..5245201 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2480,9 +2480,9 @@ dependencies = [ [[package]] name = "sea-orm" -version = "0.12.12" +version = "0.12.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cbf88748872fa54192476d6d49d0775e208566a72656e267e45f6980b926c8d" +checksum = "6632f499b80cc6aaa781b302e4c9fae663e0e3dcf2640e9d80034d5b10731efe" dependencies = [ "async-stream", "async-trait", @@ -2525,9 +2525,9 @@ dependencies = [ [[package]] name = "sea-orm-macros" -version = "0.12.12" +version = "0.12.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0dbc880d47aa53c6a572e39c99402c7fad59b50766e51e0b0fc1306510b0555" +checksum = "ec13bfb4c4aef208f68dbea970dd40d13830c868aa8dcb4e106b956e6bb4f2fa" dependencies = [ "heck", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index fd1e13d..b9cfbd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ chrono = { version = "0.4.33", default-features = false, features = ["std", "lib chrono-tz = { version = "0.8.2", optional = true } -sea-orm = { version = "0.12.2", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros", "postgres-array" ], optional = true } +sea-orm = { version = "0.12.14", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros", "postgres-array" ], optional = true } migration = { path = "migration", optional = true} entity = { path = "entity", optional = true} sea-query = { version = "0.30.7", optional = true } diff --git a/entity/Cargo.toml b/entity/Cargo.toml index 400bea9..07922a5 100644 --- a/entity/Cargo.toml +++ b/entity/Cargo.toml @@ -9,5 +9,5 @@ path = "src/mod.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -sea-orm = "0.12.2" +sea-orm = "0.12.14" serde = "1.0.196"