[package]
edition = "2021"
rust-version = "1.96.0"
name = "sqlly-datatable"
version = "1.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Configurable virtualized data grid component for the GPUI toolkit."
documentation = "https://docs.rs/sqlly-datatable"
readme = false
keywords = [
"ui",
"grid",
"datagrid",
"gpui",
"table",
]
categories = [
"gui",
"data-structures",
]
license = "MIT"
repository = "https://github.com/mattvanhorn/sqlly-datatable"
[lib]
name = "sqlly_datatable"
path = "src/lib.rs"
[[test]]
name = "mouse_interaction"
path = "tests/mouse_interaction.rs"
[[test]]
name = "nested_interaction"
path = "tests/nested_interaction.rs"
[[test]]
name = "text_box_gpui"
path = "tests/text_box_gpui.rs"
[dependencies.gpui]
version = "0.2"
[dependencies.regex]
version = "1"
[dependencies.smol]
version = "2.0"
[dev-dependencies.gpui]
version = "0.2"
features = ["test-support"]
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"
unused_must_use = "warn"