[package]
edition = "2024"
rust-version = "1.85"
name = "yew-datatable-core"
version = "0.2.0"
authors = ["Hasni Mehdi <hasnimehdi@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Headless data table engine for Rust/WASM - TanStack Table inspired"
homepage = "https://github.com/Black-Cockpit/yew-datatable"
readme = "README.md"
keywords = [
"web",
"wasm",
"datatable",
"headless",
"tanstack",
]
categories = ["wasm"]
license = "MIT"
repository = "https://github.com/Black-Cockpit/yew-datatable"
resolver = "2"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "yew_datatable_core"
path = "src/lib.rs"
[[test]]
name = "aggregation_tests"
path = "tests/aggregation_tests.rs"
[[test]]
name = "column_ordering_tests"
path = "tests/column_ordering_tests.rs"
[[test]]
name = "column_pinning_tests"
path = "tests/column_pinning_tests.rs"
[[test]]
name = "column_sizing_tests"
path = "tests/column_sizing_tests.rs"
[[test]]
name = "column_visibility_tests"
path = "tests/column_visibility_tests.rs"
[[test]]
name = "expanding_tests"
path = "tests/expanding_tests.rs"
[[test]]
name = "filtering_tests"
path = "tests/filtering_tests.rs"
[[test]]
name = "pagination_tests"
path = "tests/pagination_tests.rs"
[[test]]
name = "row_selection_tests"
path = "tests/row_selection_tests.rs"
[[test]]
name = "sorting_tests"
path = "tests/sorting_tests.rs"
[[test]]
name = "table_integration_tests"
path = "tests/table_integration_tests.rs"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true
[dev-dependencies.serde_json]
version = "1.0.100"