[package]
edition = "2024"
rust-version = "1.85"
name = "keymap-config"
version = "0.1.1"
authors = ["S-Nakamur-a"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Load keymap-rs bindings from TOML, with conflict detection"
readme = "README.md"
keywords = [
"keymap",
"keybinding",
"terminal",
"tui",
"input",
]
categories = [
"command-line-interface",
"data-structures",
]
license = "MIT"
repository = "https://github.com/S-Nakamur-a/keymap-rs"
[lib]
name = "keymap_config"
path = "src/lib.rs"
[[example]]
name = "load_config"
path = "examples/load_config.rs"
[[example]]
name = "rebind"
path = "examples/rebind.rs"
[dependencies.keymap-core]
version = "0.1.0"
[dependencies.keymap-seq]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "0.8"
[dev-dependencies.keymap-term]
version = "0.1.0"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"