[package]
edition = "2024"
rust-version = "1.96"
name = "typ-buffer"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rope-backed text buffer with selections, multi-cursor, undo and search, for the TYPE terminal IDE"
homepage = "https://github.com/Pranjal-SB/type"
readme = false
keywords = [
"editor",
"terminal",
"tui",
"ide",
]
categories = [
"text-editors",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/Pranjal-SB/type"
[lib]
name = "typ_buffer"
path = "src/lib.rs"
[[test]]
name = "buffer"
path = "tests/buffer.rs"
[[test]]
name = "change"
path = "tests/change.rs"
[[test]]
name = "perf"
path = "tests/perf.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "selection"
path = "tests/selection.rs"
[[test]]
name = "undo"
path = "tests/undo.rs"
[[test]]
name = "width"
path = "tests/width.rs"
[[test]]
name = "word"
path = "tests/word.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.ropey]
version = "1.6"
[dependencies.unicode-segmentation]
version = "1.11"
[dependencies.unicode-width]
version = "0.2"