[package]
edition = "2024"
name = "rat-event"
version = "2.0.4"
build = false
exclude = [
".idea/*",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ratatui event handler trait for widgets"
readme = "readme.md"
keywords = [
"ratatui",
"input",
"event",
]
categories = ["command-line-interface"]
license = "MIT/Apache-2.0"
repository = "https://github.com/thscharler/rat-salsa"
resolver = "2"
[lib]
name = "rat_event"
path = "src/lib.rs"
[[test]]
name = "test_util"
path = "tests/test_util.rs"
[dependencies.log]
version = "0.4"
[dependencies.ratatui-core]
version = "0.1"
features = [
"std",
"layout-cache",
]
[dependencies.ratatui-crossterm]
version = "0.1"
[lints.clippy]
collapsible_else_if = "allow"
collapsible_if = "allow"
comparison_chain = "allow"
if_same_then_else = "allow"