diff --git a/Cargo.lock b/Cargo.lock index ec5246521e..fc54fe18da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -284,9 +284,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.57" +version = "0.1.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f" +checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c" dependencies = [ "proc-macro2", "quote", diff --git a/cache_system/Cargo.toml b/cache_system/Cargo.toml index bf088d7577..8c974f45d1 100644 --- a/cache_system/Cargo.toml +++ b/cache_system/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.58" futures = "0.3" iox_time = { path = "../iox_time" } metric = { path = "../metric" } diff --git a/compactor/Cargo.toml b/compactor/Cargo.toml index 3c62bf20f8..f0fc8ee672 100644 --- a/compactor/Cargo.toml +++ b/compactor/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] arrow = { version = "25.0.0", features = ["prettyprint"] } -async-trait = "0.1.57" +async-trait = "0.1.58" backoff = { path = "../backoff" } bytes = "1.2" data_types = { path = "../data_types" } diff --git a/ingester/Cargo.toml b/ingester/Cargo.toml index 5965866443..b680c6d905 100644 --- a/ingester/Cargo.toml +++ b/ingester/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" arrow = { version = "25.0.0", features = ["prettyprint"] } arrow-flight = "25.0.0" arrow_util = { path = "../arrow_util" } -async-trait = "0.1.57" +async-trait = "0.1.58" backoff = { path = "../backoff" } bytes = "1.2" datafusion = { path = "../datafusion" } diff --git a/iox_catalog/Cargo.toml b/iox_catalog/Cargo.toml index 0851448ec3..572e2bce76 100644 --- a/iox_catalog/Cargo.toml +++ b/iox_catalog/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Paul Dix "] edition = "2021" [dependencies] # In alphabetical order -async-trait = "0.1.57" +async-trait = "0.1.58" data_types = { path = "../data_types" } futures = "0.3" iox_time = { version = "0.1.0", path = "../iox_time" } diff --git a/object_store_metrics/Cargo.toml b/object_store_metrics/Cargo.toml index 878ca51414..f1ef6e5218 100644 --- a/object_store_metrics/Cargo.toml +++ b/object_store_metrics/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Paul Dix "] edition = "2021" [dependencies] # In alphabetical order -async-trait = "0.1.57" +async-trait = "0.1.58" bytes = "1.2" futures = "0.3" iox_time = { version = "0.1.0", path = "../iox_time" } diff --git a/querier/Cargo.toml b/querier/Cargo.toml index dfbf89025a..79bdea8fa2 100644 --- a/querier/Cargo.toml +++ b/querier/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] arrow = "25.0.0" -async-trait = "0.1.57" +async-trait = "0.1.58" backoff = { path = "../backoff" } bytes = "1.2" cache_system = { path = "../cache_system" } diff --git a/service_common/Cargo.toml b/service_common/Cargo.toml index 024d2c886b..5baca869df 100644 --- a/service_common/Cargo.toml +++ b/service_common/Cargo.toml @@ -18,4 +18,4 @@ tonic = "0.8" workspace-hack = { path = "../workspace-hack"} # Crates.io dependencies, in alphabetical order -async-trait = "0.1.57" +async-trait = "0.1.58" diff --git a/test_helpers/Cargo.toml b/test_helpers/Cargo.toml index a4e58c9720..4802398a53 100644 --- a/test_helpers/Cargo.toml +++ b/test_helpers/Cargo.toml @@ -12,7 +12,7 @@ tracing-log = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } observability_deps = { path = "../observability_deps" } workspace-hack = { path = "../workspace-hack"} -async-trait = { version = "0.1.57", optional = true } +async-trait = { version = "0.1.58", optional = true } tokio = { version = "1.21.1", optional = true, default_features = false, features = ["time"] } [features]