From 6fdd0bbbeb64dd9b21c11759a15cc056c71893d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Oct 2025 14:12:11 +0000 Subject: [PATCH] Update clickhouse requirement from 0.13 to 0.14 Updates the requirements on [clickhouse](https://github.com/ClickHouse/clickhouse-rs) to permit the latest version. - [Changelog](https://github.com/ClickHouse/clickhouse-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/ClickHouse/clickhouse-rs/compare/v0.13.0...v0.14.0) --- updated-dependencies: - dependency-name: clickhouse dependency-version: 0.14.0 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 6996106..0fbf248 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,11 +34,11 @@ path = "examples/remove/main.rs" [dependencies] -clickhouse = { version = "0.13", features = ["inserter", "watch"] } +clickhouse = { version = "0.14", features = ["inserter", "watch"] } clickhouse-derive = { version = "0.2" } tokio = { version = "1", features = ["rt-multi-thread", "macros"] } serde = { version = "1.0.196", features = ["derive"] } [dev-dependencies] -clickhouse = { version = "0.13", features = ["test-util"] } +clickhouse = { version = "0.14", features = ["test-util"] }