[package]
edition = "2021"
name = "polaranges"
version = "0.3.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-first genomic range operations on top of Polars DataFrames"
homepage = "https://github.com/pyranges/polaranges"
documentation = "https://docs.rs/polaranges"
readme = "README.md"
keywords = [
"genomics",
"intervals",
"polars",
"bioinformatics",
"ranges",
]
categories = [
"science",
"data-structures",
]
license = "MIT"
repository = "https://github.com/pyranges/polaranges"
[lib]
name = "polaranges"
path = "src/lib.rs"
[[bin]]
name = "polaranges"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.39"
features = ["derive"]
[dependencies.polars-core]
version = "0.53.0"
features = [
"algorithm_group_by",
"fmt",
"strings",
"row_hash",
"dtype-categorical",
]
default-features = false
[dependencies.polars-dtype]
version = "0.53.0"
features = ["dtype-categorical"]
default-features = false
[dependencies.polars-io]
version = "0.53.0"
features = ["csv"]
default-features = false
[dependencies.polars-lazy]
version = "0.53.0"
features = [
"fmt",
"dtype-categorical",
"csv",
"parquet",
"new_streaming",
]
default-features = false
[dependencies.polars-ops]
version = "0.53.0"
features = ["dtype-categorical"]
default-features = false
[dependencies.psm]
version = "=0.1.27"
[dependencies.rayon]
version = "1.11.0"
[dependencies.ruranges-core]
version = "0.1.8"
[dependencies.rustc-hash]
version = "2.1.0"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.unicode-segmentation]
version = "=1.12.0"
[dev-dependencies.tempfile]
version = "3.13.0"