[package]
edition = "2021"
rust-version = "1.75"
name = "modalkit"
version = "0.0.25"
authors = ["Ulyssa <git@ulyssa.dev>"]
build = false
exclude = [
".github",
"CONTRIBUTING.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for building applications that use modal editing"
homepage = "https://github.com/ulyssa/modalkit/tree/main/crates/modalkit"
readme = "README.md"
keywords = [
"modal",
"vim",
"emacs",
]
categories = [
"command-line-interface",
"text-editors",
]
license = "Apache-2.0"
repository = "https://github.com/ulyssa/modalkit"
[features]
clipboard = ["dep:arboard"]
default = []
[lib]
name = "modalkit"
path = "src/lib.rs"
[dependencies.anymap2]
version = "0.13.0"
[dependencies.arboard]
version = "^3.3.2"
features = ["wayland-data-control"]
optional = true
[dependencies.bitflags]
version = "2.4.2"
[dependencies.crossterm]
version = "0.29"
[dependencies.derive_more]
version = "0.99.16"
[dependencies.editor-types]
version = "0.0.2"
[dependencies.intervaltree]
version = "0.2.6"
[dependencies.keybindings]
version = "0.0.2"
[dependencies.nom]
version = "7.0.0"
[dependencies.radix_trie]
version = "0.2.1"
[dependencies.regex]
version = "^1.5"
[dependencies.ropey]
version = "1.5.0"
[dependencies.thiserror]
version = "^1.0.37"
[dependencies.unicode-segmentation]
version = "^1.7"
[dependencies.unicode-width]
version = "0.1.10"
[dev-dependencies.rand]
version = "0.8.4"
[dev-dependencies.temp-dir]
version = "0.1.11"
[lints.clippy]
bool_assert_comparison = "allow"
bool_to_int_with_if = "allow"
field_reassign_with_default = "allow"
len_without_is_empty = "allow"
manual_range_contains = "allow"
match_like_matches_macro = "allow"
needless_return = "allow"
too_many_arguments = "allow"
type_complexity = "allow"