From d856a26b6319b905d5a5e11ce863394634e7b69a Mon Sep 17 00:00:00 2001 From: Mike Cronce Date: Wed, 27 Aug 2025 16:45:55 -0400 Subject: [PATCH] Update dependencies --- benches/Cargo.toml | 2 +- influxdb/Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/benches/Cargo.toml b/benches/Cargo.toml index 6a340ce..219a6ce 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" chrono = { version = "0.4.11", features = ["serde"] } futures = "0.3.4" influxdb = { path = "../influxdb", features = ["derive"] } -tokio = { version = "0.2.22", features = ["macros", "rt-threaded", "sync"] } +tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread", "sync"] } [[bench]] name = "client" diff --git a/influxdb/Cargo.toml b/influxdb/Cargo.toml index 44e7bb4..a9457f0 100644 --- a/influxdb/Cargo.toml +++ b/influxdb/Cargo.toml @@ -24,15 +24,15 @@ required-features = ["chrono"] [dependencies] chrono = { version = "0.4.23", features = ["serde"], default-features = false, optional = true } futures-util = "0.3.17" -http = "0.2.4" +http = "1.3.1" influxdb_derive = { version = "0.5.1", optional = true } lazy-regex = "3.1" -reqwest = { version = "0.11.4", default-features = false } +reqwest = { version = "0.12.23", default-features = false } serde = { version = "1.0.186", optional = true } serde_derive = { version = "1.0.186", optional = true } serde_json = { version = "1.0.48", optional = true } surf = { version = "2.2.0", default-features = false, optional = true } -thiserror = "1.0" +thiserror = "2.0.16" time = { version = "0.3.39", optional = true } [features] @@ -50,5 +50,5 @@ time = ["dep:time"] chrono = ["dep:chrono"] [dev-dependencies] -indoc = "1.0" +indoc = "2.0.6" tokio = { version = "1.7", features = ["macros", "rt-multi-thread"] }