[package]
edition = "2021"
rust-version = "1.89"
name = "oxiui-table"
version = "0.1.2"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Virtualized table widget with egui and iced backends for OxiUI"
readme = "README.md"
keywords = [
"gui",
"table",
"egui",
"iced",
"cooljapan",
]
categories = ["gui"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiui"
[features]
a11y-table = [
"dep:oxiui-accessibility",
"dep:accesskit",
]
default = []
egui-table = [
"dep:egui",
"dep:eframe",
]
iced-table = ["dep:iced"]
persist-table = ["dep:oxicode"]
text-table = ["dep:oxiui-text"]
theme-table = ["dep:oxiui-theme"]
[lib]
name = "oxiui_table"
path = "src/lib.rs"
[[test]]
name = "height_cache_tests"
path = "tests/height_cache_tests.rs"
[[test]]
name = "sticky_tests"
path = "tests/sticky_tests.rs"
[[test]]
name = "table"
path = "tests/table.rs"
[dependencies.accesskit]
version = "0.24.0"
optional = true
[dependencies.eframe]
version = "0.34.3"
features = [
"wgpu",
"x11",
"wayland",
]
optional = true
default-features = false
[dependencies.egui]
version = "0.34.3"
optional = true
default-features = false
[dependencies.iced]
version = "0.14.0"
features = [
"wgpu",
"thread-pool",
"x11",
"wayland",
]
optional = true
default-features = false
[dependencies.oxicode]
version = "0.2.4"
features = ["derive"]
optional = true
[dependencies.oxiui-accessibility]
version = "0.1.2"
optional = true
[dependencies.oxiui-core]
version = "0.1.2"
[dependencies.oxiui-text]
version = "0.1.2"
optional = true
[dependencies.oxiui-theme]
version = "0.1.2"
optional = true
[dev-dependencies.pollster]
version = "0.4.0"