Python bindings to oxyroot. Makes reading .root files blazing fast 馃殌
at dev 573 B view raw
1[package] 2name = "py-oxyroot" 3version = "0.1.0" 4edition = "2021" 5 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7[lib] 8name = "oxyroot" 9crate-type = ["cdylib"] 10 11[dependencies] 12oxyroot = "0.1.25" 13pyo3 = { version = "0.25.0", features = ["abi3-py38"] } 14parking_lot = "0.12.3" 15numpy = "0.25.0" 16parquet = { version = "53.0.0", features = ["arrow"] } 17arrow = "53.0.0" 18polars = { version = "0.50.0", features = ["diagonal_concat"] } 19pyo3-polars = "0.23.1" 20rayon = "1.10.0" 21glob = "0.3.1" 22once_cell = "1.19.0" 23num_cpus = "1.16.0"