[package]
name = "arrow_util"
version = "0.1.3"
edition = "2021"
authors = ["Serhij S.
"]
license = "Apache-2.0"
repository = "https://github.com/alttch/arrow-util"
description = "Tools for Apache Arrow"
readme = "README.md"
keywords = ["arrow", "dataframe", "database", "convert"]
[package.metadata.docs.rs]
features = ["full"]
[package.metadata.playground]
features = ["full"]
[dependencies]
arrow2 = { version = "0.17.0", features = ["io_ipc"], optional = true }
arrow2_ih = { version = "0.17.0", package = "arrow2", git = "https://github.com/divi255/arrow2", features = ["io_ipc"], optional = true }
chrono = "0.4.24"
polars = { version = "0.28.0", optional = true }
sqlx = { version = "0.6.3", features = ["chrono", "postgres", "runtime-tokio-native-tls"], optional = true }
[lib]
name = "arrow_util"
path = "src/lib.rs"
[features]
default = ["arrow2"]
full = ["default", "sqlx", "polars"]