Skip to content

Commit

Permalink
fix(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 7, 2023
1 parent fcd82a3 commit 4953ef3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "17", 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]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4953ef3

Please sign in to comment.