[package]
edition = "2024"
rust-version = "1.95"
name = "hjkl-keymap"
version = "0.32.0"
authors = ["mxaddict <mxaddict@kryptic.sh>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Backend-agnostic modal keymap: chord parsing, trie dispatch, leader/chord resolution for the hjkl editor stack"
homepage = "https://hjkl.kryptic.sh"
readme = "README.md"
keywords = [
"vim",
"modal",
"keymap",
"tui",
"editor",
]
categories = [
"text-editors",
"parsing",
]
license = "MIT"
repository = "https://github.com/kryptic-sh/hjkl-keymap"
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "hjkl_keymap"
path = "src/lib.rs"
[[test]]
name = "keymap_tests"
path = "tests/keymap_tests.rs"
[dependencies.bitflags]
version = "2"
[dependencies.thiserror]
version = "2"
[dev-dependencies]