dsq-filter 0.1.0

Filter system for dsq that operates at the AST level
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.coz]
optional = true
version = "0.1"

[dependencies.dsq-functions]
default-features = false
version = "0.1.0"

[dependencies.dsq-parser]
version = "0.1.0"

[dependencies.dsq-shared]
version = "0.1.0"

[dependencies.log]
version = "0.4"

[dependencies.lru]
version = "0.16"

[dependencies.polars]
default-features = false
features = ["lazy", "csv", "json", "ipc", "strings", "dtype-datetime", "dtype-date", "dtype-time", "describe", "rows"]
version = "0.51"

[dependencies.rand]
optional = true
version = "0.9"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.tempfile]
version = "3.8"

[features]
profiling = ["coz"]
rand = ["dep:rand"]

[lib]
name = "dsq_filter"
path = "src/lib.rs"

[lints.clippy]
nursery = "allow"
pedantic = "allow"

[lints.clippy.approx_constant]
level = "allow"
priority = 2

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 2

[package]
authors = ["Durable Programming LLC"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "parsing", "command-line-utilities"]
description = "Filter system for dsq that operates at the AST level"
documentation = "https://docs.rs/dsq-filter"
edition = "2021"
homepage = "https://datasetq.com"
keywords = ["jq", "data", "filter", "ast", "json"]
license = "MIT OR Apache-2.0"
name = "dsq-filter"
readme = "README.md"
repository = "https://github.com/durableprogramming/dsq"
version = "0.1.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.dsq-functions]
features = ["rand"]
version = "0.1.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rand]
version = "0.9"

[target.'cfg(target_arch = "wasm32")'.dependencies]