Skip to content

Commit

Permalink
Bump minimum versions of arrow (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs authored Aug 30, 2024
1 parent 88bc21c commit e4717d6
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 18 deletions.
90 changes: 77 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "re_arrow2"
version = "0.17.5"
version = "0.17.6"
license = "Apache-2.0"
description = "Unofficial implementation of Apache Arrow spec in safe Rust"
homepage = "https://github.com/rerun-io/re_arrow2"
Expand Down Expand Up @@ -113,10 +113,10 @@ ahash = "0.8"
memchr = { version = "2.6", optional = true }

# Support conversion to/from arrow-rs
arrow-buffer = { version = ">=40", optional = true }
arrow-schema = { version = ">=40", optional = true }
arrow-data = { version = ">=40", optional = true }
arrow-array = { version = ">=40", optional = true }
arrow-buffer = { version = ">=52", optional = true }
arrow-schema = { version = ">=52", optional = true }
arrow-data = { version = ">=52", optional = true }
arrow-array = { version = ">=52", optional = true }

[target.wasm32-unknown-unknown.dependencies]
getrandom = { version = "0.2", features = ["js"] }
Expand Down

0 comments on commit e4717d6

Please sign in to comment.