Skip to content

Commit

Permalink
Merge pull request #2002 from kuzudb/rust-example-arrow
Browse files Browse the repository at this point in the history
Add arrow feature to rust example so that it can re-use the test build in CI
  • Loading branch information
benjaminwinger committed Sep 11, 2023
2 parents 510d804 + 9dedddc commit e030f73
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 e030f73

Please sign in to comment.