[package]
edition = "2021"
name = "keybinds-tui"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal UI for looking up keybindings across your tools, auto-opening on the tab matching the app you were just focused on"
readme = "README.md"
keywords = [
"tui",
"keybindings",
"ratatui",
"hyprland",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/harbefas/keybinds-tui"
[[bin]]
name = "kb"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.crossterm]
version = "0.28"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"