Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to arrow2 0.16 #95

Merged
merged 1 commit into from
Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions arrow2_convert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "arrow2_convert"
version = "0.3.2"
authors = [
"Jorge Leitao <jorgecarleitao@gmail.com>",
"Chandra Penke <chandrapenke@gmail.com>"
"Chandra Penke <chandrapenke@gmail.com>",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops, that's my toml autoformatter being helpful 😬

]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -12,7 +12,7 @@ repository = "https://github.com/DataEngineeringLabs/arrow2-convert"
description = "Convert between nested rust types and Arrow with arrow2"

[dependencies]
arrow2 = "0.15"
arrow2 = "0.16"
arrow2_convert_derive = { version = "0.3.2", path = "../arrow2_convert_derive", optional = true }
chrono = { version = "0.4", default_features = false, features = ["std"] }
err-derive = "0.3"
Expand All @@ -22,5 +22,5 @@ trybuild = "1.0"
arrow2_convert_derive = { version = "0.3.2", path = "../arrow2_convert_derive" }

[features]
default = [ "derive" ]
derive = [ "arrow2_convert_derive" ]
default = ["derive"]
derive = ["arrow2_convert_derive"]
2 changes: 1 addition & 1 deletion examples/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
arrow2 = "0.15"
arrow2 = "0.16"
arrow2_convert = { version = "0.3", path = "../../arrow2_convert" }