[package]
edition = "2024"
name = "polars-testing"
version = "0.53.0"
authors = ["Ritchie Vink <ritchie46@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Testing suite for the Polars DataFrame library"
homepage = "https://www.pola.rs/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/pola-rs/polars"
resolver = "2"
[lib]
name = "polars_testing"
path = "src/lib.rs"
[dependencies.polars-core]
version = "0.53.0"
features = [
"dtype-array",
"dtype-categorical",
"dtype-struct",
]
default-features = false
[dependencies.polars-ops]
version = "0.53.0"
features = [
"abs",
"is_close",
]
default-features = false
[lints.clippy]
collapsible_if = "allow"