[package]
edition = "2021"
rust-version = "1.88"
name = "editor-types"
version = "0.0.4"
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 working with defunctionalized editor types"
homepage = "https://github.com/ulyssa/modalkit/tree/main/crates/editor-types"
readme = "README.md"
keywords = []
categories = ["text-editors"]
license = "Apache-2.0"
repository = "https://github.com/ulyssa/modalkit"
[lib]
name = "editor_types"
path = "src/lib.rs"
[dependencies.bitflags]
version = "2.4.2"
[dependencies.editor-types-macros]
version = "0.0.4"
[dependencies.keybindings]
version = "0.0.4"
[dependencies.regex]
version = "^1.5"
[lints.clippy]
bool_assert_comparison = "allow"
bool_to_int_with_if = "allow"
enum_variant_names = "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"