From bd5665bcfd2839d17e2e071f2eccc911f1b88356 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 14:15:21 +0000 Subject: [PATCH] Update clickhouse requirement from 0.11 to 0.12 Updates the requirements on [clickhouse](https://github.com/loyd/clickhouse.rs) to permit the latest version. - [Changelog](https://github.com/loyd/clickhouse.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/loyd/clickhouse.rs/compare/v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: clickhouse dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 28b66ff..0e648ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,11 +34,11 @@ path = "examples/remove/main.rs" [dependencies] -clickhouse = { version = "0.11", features = ["watch"] } +clickhouse = { version = "0.12", features = ["watch"] } clickhouse-derive = { version = "0.1" } tokio = { version = "1", features = ["rt-multi-thread", "macros"] } serde = { version = "1.0.196", features = ["derive"] } [dev-dependencies] -clickhouse = { version = "0.11", features = ["test-util"] } +clickhouse = { version = "0.12", features = ["test-util"] }