[package]
edition = "2021"
name = "polars-structpath"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for dynamically accessing nested Rust structures using path notation"
readme = "README.md"
keywords = [
"polars-structpath",
"polars",
"dataframe",
"path",
"nested",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/jmunar/polarspath"
[features]
default = [
"std",
"derive",
]
derive = ["polars-structpath-derive"]
std = []
[lib]
name = "polars_structpath"
path = "src/lib.rs"
[[example]]
name = "person"
path = "examples/person.rs"
[[example]]
name = "user"
path = "examples/user.rs"
[[test]]
name = "test_to_arrow"
path = "tests/test_to_arrow.rs"
[dependencies.paste]
version = "1.0"
[dependencies.polars-arrow]
version = "0.52.0"
default-features = false
[dependencies.polars-core]
version = "0.52.0"
features = [
"dtype-struct",
"dtype-categorical",
]
default-features = false
[dependencies.polars-structpath-derive]
version = "0.4.0"
optional = true
[dev-dependencies.polars-structpath-derive]
version = "0.4.0"
[dev-dependencies.trybuild]
version = "1.0"