diff --git a/Cargo.lock b/Cargo.lock index b2fb2ab98f..b897de5487 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -205,9 +205,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.52" +version = "0.1.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3" +checksum = "ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600" dependencies = [ "proc-macro2", "quote", diff --git a/compactor/Cargo.toml b/compactor/Cargo.toml index 07f31994a2..40bc48c1b6 100644 --- a/compactor/Cargo.toml +++ b/compactor/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] arrow = { version = "11.0.0", features = ["prettyprint"] } -async-trait = "0.1.42" +async-trait = "0.1.53" backoff = { path = "../backoff" } bytes = "1.0" data_types2 = { path = "../data_types2" } diff --git a/ingester/Cargo.toml b/ingester/Cargo.toml index da8e5f0cdc..7419d06744 100644 --- a/ingester/Cargo.toml +++ b/ingester/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" arrow = { version = "11", features = ["prettyprint"] } arrow-flight = "11" arrow_util = { path = "../arrow_util" } -async-trait = "0.1.42" +async-trait = "0.1.53" backoff = { path = "../backoff" } base64 = "0.13" bytes = "1.0" diff --git a/iox_catalog/Cargo.toml b/iox_catalog/Cargo.toml index 814b61893a..7498633f62 100644 --- a/iox_catalog/Cargo.toml +++ b/iox_catalog/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] # In alphabetical order assert_matches = "1.5.0" -async-trait = "0.1.42" +async-trait = "0.1.53" data_types2 = { path = "../data_types2" } futures = "0.3" metric = { version = "0.1.0", path = "../metric" } diff --git a/object_store/Cargo.toml b/object_store/Cargo.toml index c8a4b5d6ad..98855ad037 100644 --- a/object_store/Cargo.toml +++ b/object_store/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Paul Dix "] edition = "2021" [dependencies] # In alphabetical order -async-trait = "0.1.42" +async-trait = "0.1.53" # Microsoft Azure Blob storage integration # In order to support tokio 1.0 and delimiters, needed to pull in unreleased azure sdk azure_core = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "15de10cb58cf5cb271334a20e35fa9fbedd10244", optional = true, default-features = false, features = ["enable_reqwest_rustls"] } diff --git a/querier/Cargo.toml b/querier/Cargo.toml index 614ec7d573..11c3ccecde 100644 --- a/querier/Cargo.toml +++ b/querier/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] arrow = "11" arrow-flight = "11" -async-trait = "0.1.42" +async-trait = "0.1.53" backoff = { path = "../backoff" } bytes = "1.0" client_util = { path = "../client_util" }