[package]
edition = "2024"
name = "egui-selectable-table"
version = "0.6.0"
build = false
exclude = [
"/.github",
"/demo",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A library for egui to create tables with draggable cell and row selection.
"""
homepage = "https://github.com/TheRustyPickle/egui-selectable-table"
readme = "README.md"
keywords = [
"drag",
"egui",
"row",
"selectable-table",
"table",
]
categories = ["gui"]
license = "MIT"
repository = "https://github.com/TheRustyPickle/egui-selectable-table"
[package.metadata.docs.rs]
all-features = true
features = ["fuzzy-matching"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
fuzzy-matching = ["dep:nucleo-matcher"]
[lib]
name = "egui_selectable_table"
path = "src/lib.rs"
[dependencies.egui]
version = "0.34"
features = ["rayon"]
default-features = false
[dependencies.egui_extras]
version = "0.34"
default-features = false
[dependencies.nucleo-matcher]
version = "0.3.1"
optional = true
[dependencies.rayon]
version = "1.11.0"
[lints.clippy.enum_glob_use]
level = "deny"
priority = 2
[lints.clippy.expect_used]
level = "allow"
priority = 6
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 7
[lints.clippy.nursery]
level = "deny"
priority = 0
[lints.clippy.pedantic]
level = "deny"
priority = 1
[lints.clippy.perf]
level = "deny"
priority = 3
[lints.clippy.struct_excessive_bools]
level = "allow"
priority = 8
[lints.clippy.style]
level = "deny"
priority = 4
[lints.clippy.unwrap_used]
level = "deny"
priority = 5
[lints.rust]
unsafe_code = "forbid"