[package]
edition = "2024"
rust-version = "1.91"
name = "featrs"
version = "0.3.1"
authors = ["Aditya Vikram Mahendru"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Feature engineering library for Rust, inspired by scikit-learn"
documentation = "https://docs.rs/featrs"
readme = "README.md"
keywords = [
"feature-engineering",
"machine-learning",
"preprocessing",
"scikit-learn",
]
categories = [
"science",
"data-structures",
]
license = "MIT"
repository = "https://github.com/DeathSurfing/featrs"
[lib]
name = "featrs"
path = "src/lib.rs"
[[example]]
name = "scaling_pipeline"
path = "examples/scaling_pipeline.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "time_series_integration"
path = "tests/time_series_integration.rs"
[dependencies.polars]
version = "0.54"
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"