Skip to content

Commit

Permalink
DO NOT MERGE: Use arrow-rs version with comment support
Browse files Browse the repository at this point in the history
This commit switches to used version of arrow-rs to the version of
apache/arrow-rs#5759 which introduces support for comments in CSV input
files.
  • Loading branch information
bbannier committed May 12, 2024
1 parent c0b18bd commit 4709b28
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -133,18 +133,19 @@ large_futures = "warn"

[workspace.lints.rust]
unused_imports = "deny"

[patch.crates-io]
arrow-arith = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-array = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-buffer = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-cast = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-csv = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-data = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-flight = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-ipc = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-json = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-ord = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-row = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-schema = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-select = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-string = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-arith = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-array = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-buffer = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-cast = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-csv = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-data = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-flight = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-ipc = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-json = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-ord = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-row = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-schema = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-select = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-string = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }

0 comments on commit 4709b28

Please sign in to comment.