Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 24, 2024
1 parent 2b599eb commit 390333e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push Docker image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand Down
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ keywords = ["apache-arrow", "flight-sql", "odbc"]

[dependencies]
#odbc-api = "6.0.2"
arrow-odbc = "8.0.0"
arrow-odbc = "12.0.0"
tokio = { version = "1.36.0", features = ["full"] }
tonic = { version = "0.7" }
prost = "0.10"
prost-types = { version = "0.10.1" }
prost-derive = "0.10"
tonic = { version = "0.12" }
prost = "0.13"
prost-types = { version = "0.13.0" }
prost-derive = "0.13"
futures = { version = "0.3", default-features = false, features = ["alloc"]}
arrow = { version = "50.0.0", features = ["prettyprint"] }
arrow-schema = "50.0.0"
arrow = { version = "53.0.0", features = ["prettyprint"] }
arrow-schema = "53.0.0"
futures-core = "0.3.21"
log = { version = "0.4.17", features = ["kv_unstable"] }
env_logger = "0.9.0"
env_logger = "0.11.0"
tokio-stream = "0.1.8"
async-stream = "0.3.3"
tonic-reflection = "0.4.0"
tonic-reflection = "0.12.0"
anyhow = "1.0.57"
clap = { version ="3.1.18", features = ["derive", "cargo"] }
clap = { version ="4.0.0", features = ["derive", "cargo"] }
serde = { version = "1.0", features = ["derive"] }
bytes = "1.1"

[build-dependencies]
tonic-build = "0.7"
tonic-build = "0.12"
2 changes: 1 addition & 1 deletion deploy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.60 as builder
FROM rust:1.82 as builder
RUN apt-get update
RUN apt-get install -y cmake musl-tools clang libc++-dev build-essential autoconf libtool pkg-config
RUN apt-get install -y unixodbc-dev
Expand Down

0 comments on commit 390333e

Please sign in to comment.