pyo3-polars 0.4.1

PyO3 bindings to polars
Documentation
[package]
name = "pyo3-polars"
version = "0.4.1"
edition = "2021"
license = "MIT"
readme = "../README.md"
repository = "https://github.com/pola-rs/pyo3-polars"
description = "PyO3 bindings to polars"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
polars = { version = "0.30.0", default_features = false }
polars-core = { version = "0.30.0", default_features = false }
polars-plan = { version = "0.30.0", default_features = false, optional = true }
polars-lazy = { version = "0.30.0", default_features = false, optional = true }
pyo3 = "0.19.0"
thiserror = "1"
arrow2 = "0.17"
ciborium = { version = "0.2.0", optional = true }

[features]
lazy = ["polars/serde-lazy", "polars-plan", "polars-lazy", "ciborium"]