[package]
edition = "2024"
rust-version = "1.95"
name = "hjkl-layout"
version = "0.40.0"
authors = ["mxaddict <mxaddict@kryptic.sh>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Renderer-agnostic window/split layout machinery for the hjkl editor stack. Owns LayoutTree, Pane, SplitDir, WindowId, and all traversal/focus/resize/swap/equalize operations."
homepage = "https://hjkl.kryptic.sh"
readme = "README.md"
keywords = [
"layout",
"split",
"editor",
"tui",
"pane",
]
categories = ["text-editors"]
license = "MIT"
repository = "https://github.com/kryptic-sh/hjkl"
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "hjkl_layout"
path = "src/lib.rs"
[lints.clippy]
assigning_clones = "warn"
format_push_string = "warn"
manual_let_else = "warn"
map_unwrap_or = "warn"
or_fun_call = "deny"
redundant_pub_crate = "warn"
unused_peekable = "deny"
use_self = "warn"