[package]
edition = "2021"
rust-version = "1.85"
name = "kode-core"
version = "0.2.2"
authors = ["Jason Adams <jason@yellowgorilla.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Framework-agnostic text editor core — buffer, selection, undo, and edit primitives built on ropey"
homepage = "https://github.com/kyomi-ai/kode"
readme = "README.md"
keywords = [
"editor",
"text",
"buffer",
"ropey",
"editing",
]
categories = [
"text-editors",
"data-structures",
]
license = "MIT"
repository = "https://github.com/kyomi-ai/kode"
[lib]
name = "kode_core"
path = "src/lib.rs"
[dependencies.ropey]
version = "1"
[lints.clippy]
large_enum_variant = "deny"
too_many_arguments = "deny"
wrong_self_convention = "deny"
[lints.rust]
dead_code = "deny"
unused_imports = "deny"
unused_mut = "deny"
unused_variables = "deny"