Skip to content

Commit

Permalink
Bump toolchain version in github workflows to 1.66.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gruuya committed Jul 21, 2023
1 parent fc1cb98 commit 2148f0d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.65.0
toolchain: 1.66.0
components: rustfmt
default: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.65.0
toolchain: 1.66.0
components: rustfmt
default: true

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.65.0
toolchain: 1.66.0
components: rustfmt
default: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.65.0
toolchain: 1.66.0
components: rustfmt
default: true

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.65.0
toolchain: 1.66.0
components: rustfmt
target: aarch64-unknown-linux-gnu
default: true
Expand All @@ -44,7 +44,7 @@ jobs:
- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.65.0
rust-toolchain: 1.66.0
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml -i python --release --manylinux 2_28 --features integrated-auth-gssapi
Expand All @@ -58,7 +58,7 @@ jobs:
# rebuild the wheel to incorporate j4rs dependencies
- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.65.0
rust-toolchain: 1.66.0
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml -i python --release --manylinux 2_28 --features integrated-auth-gssapi
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: 1.65.0
toolchain: 1.66.0
components: rustfmt
default: true

Expand All @@ -117,7 +117,7 @@ jobs:
- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.65.0
rust-toolchain: 1.66.0
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml -i python --release ${{ matrix.features }}
Expand All @@ -131,7 +131,7 @@ jobs:
# rebuild the wheel to incorporate j4rs dependencies
- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.65.0
rust-toolchain: 1.66.0
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml -i python --release ${{ matrix.features }}
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: 1.65.0
toolchain: 1.66.0
components: rustfmt
target: aarch64-apple-darwin
default: true
Expand All @@ -178,7 +178,7 @@ jobs:
- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.65.0
rust-toolchain: 1.66.0
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml --target aarch64-apple-darwin -i python --release --features integrated-auth-gssapi
Expand All @@ -192,7 +192,7 @@ jobs:
# rebuild the wheel to incorporate j4rs dependencies
- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.65.0
rust-toolchain: 1.66.0
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml --target aarch64-apple-darwin -i python --release --features integrated-auth-gssapi
Expand Down
2 changes: 1 addition & 1 deletion connectorx-cpp/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mod plan;

use arrow::array::ArrayRef;
use arrow::ffi::{ArrowArray, FFI_ArrowArray, FFI_ArrowSchema};
use arrow::ffi::{FFI_ArrowArray, FFI_ArrowSchema};
use connectorx::prelude::*;
use libc::c_char;
use std::collections::HashMap;
Expand Down

0 comments on commit 2148f0d

Please sign in to comment.