From 0af89cc80fb513e909d065b41f62713f342104b5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 18:30:51 +0000 Subject: [PATCH] fix(deps): update all dependencies --- .github/workflows/publish_artifacts.yml | 2 +- Cargo.toml | 14 +++++++------- Dockerfile | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish_artifacts.yml b/.github/workflows/publish_artifacts.yml index a25c47a..0588792 100644 --- a/.github/workflows/publish_artifacts.yml +++ b/.github/workflows/publish_artifacts.yml @@ -36,7 +36,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push container - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: context: . push: true diff --git a/Cargo.toml b/Cargo.toml index 5210536..e69073c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,18 +13,18 @@ keywords = [ "quickview", "data", "query", "sql", "datafusion" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aws-config = "0.53" -aws-sdk-glue = "0.23.0" -aws-types = "0.53" +aws-config = "0.54" +aws-sdk-glue = "0.24.0" +aws-types = "0.54" chrono = "0.4.23" -clap = { version = "4.1.1", features = ["derive"] } -datafusion = { version = "15", features = ["avro"] } +clap = { version = "4.1.4", features = ["derive"] } +datafusion = { version = "18", features = ["avro"] } deltalake = { git = "https://github.com/timvw/delta-rs", branch = "main", default-features = false, features = ["datafusion-ext", "s3-rustls"] } futures = "0.3" glob = "0.3.1" -object_store = { version = "0.5.3", features = ["aws", "gcp", "aws_profile"] } +object_store = { version = "0.5.4", features = ["aws", "gcp", "aws_profile"] } regex = "1.7.1" -tokio = { version = "1.24", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] } +tokio = { version = "1.25", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] } url = "2.3" [dev-dependencies] diff --git a/Dockerfile b/Dockerfile index 519fae4..dc40c14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -FROM rust:1.66 as builder +FROM rust:1.67 as builder WORKDIR /usr/src/qv COPY ./Cargo.toml ./Cargo.toml