From a3c0c19b8aedcd0bcee55abcb1ebcd58e7c4cc7e Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Mon, 19 Aug 2024 17:59:18 +0200 Subject: [PATCH] Update async-trait in CLI and catalog crates (#12061) Update async-trait version in CLI and catalog crates and pin to the version defined in the root Cargo file where possible. --- datafusion-cli/Cargo.toml | 2 +- datafusion/catalog/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index cbd9ffd0feba..252d056e8b83 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -31,7 +31,7 @@ readme = "README.md" [dependencies] arrow = { version = "52.2.0" } -async-trait = "0.1.41" +async-trait = "0.1.73" aws-config = "0.55" aws-credential-types = "0.55" clap = { version = "3", features = ["derive", "cargo"] } diff --git a/datafusion/catalog/Cargo.toml b/datafusion/catalog/Cargo.toml index ff28d8e0c64a..533bd1eeba08 100644 --- a/datafusion/catalog/Cargo.toml +++ b/datafusion/catalog/Cargo.toml @@ -29,7 +29,7 @@ version.workspace = true [dependencies] arrow-schema = { workspace = true } -async-trait = "0.1.41" +async-trait = { workspace = true } datafusion-common = { workspace = true } datafusion-execution = { workspace = true } datafusion-expr = { workspace = true }