Skip to content

Commit

Permalink
Add arrow feature to rust example so that it can re-use the test buil…
Browse files Browse the repository at this point in the history
…d in CI
  • Loading branch information
benjaminwinger committed Sep 7, 2023
1 parent ad5fa79 commit 9dedddc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Rust example
working-directory: examples/rust
run: cargo build
run: cargo build --features arrow

gcc-build-test-with-asan:
name: gcc build & test with asan
Expand Down
4 changes: 4 additions & 0 deletions examples/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ edition = "2021"

[dependencies]
kuzu = {path="../../tools/rust_api"}
arrow = {version="43", optional=true, default-features=false, features=[]}

[features]
arrow = ["kuzu/arrow", "dep:arrow"]

0 comments on commit 9dedddc

Please sign in to comment.