egui-data-table 0.10.0

A generic data table widget implmentation for egui
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "egui-data-table"
version = "0.10.0"
authors = ["kang-sw"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A generic data table widget implmentation for egui"
readme = "README.md"
categories = ["gui"]
license-file = "LICENSE"
repository = "https://github.com/kang-sw/egui-data-table"

[features]
default = ["persistency"]
persistency = ["dep:serde"]

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

[[example]]
name = "demo"
path = "examples/demo.rs"

[[example]]
name = "internationalization"
path = "examples/internationalization.rs"

[[example]]
name = "partially_editable"
path = "examples/partially_editable.rs"

[dependencies.egui]
version = "0.33"

[dependencies.egui_extras]
version = "0.33"
features = ["serde"]
default-features = false

[dependencies.itertools]
version = "0.14"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.tap]
version = "1"

[dependencies.thiserror]
version = "2"

[dev-dependencies.eframe]
version = "0.33"
features = [
    "serde",
    "persistence",
]

[dev-dependencies.env_logger]
version = "0.11.5"

[dev-dependencies.fastrand]
version = "2"

[dev-dependencies.log]
version = "0.4"

[dev-dependencies.names]
version = "0.14"
default-features = false