[package]
edition = "2024"
rust-version = "1.96"
name = "typ-buffer"
version = "0.2.4"
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 = "brackets"
path = "tests/brackets.rs"
[[test]]
name = "buffer"
path = "tests/buffer.rs"
[[test]]
name = "change"
path = "tests/change.rs"
[[test]]
name = "find_next"
path = "tests/find_next.rs"
[[test]]
name = "line_ending"
path = "tests/line_ending.rs"
[[test]]
name = "perf"
path = "tests/perf.rs"
[[test]]
name = "save_fidelity"
path = "tests/save_fidelity.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.notify]
version = "8.2"
[dependencies.ropey]
version = "1.6"
[dependencies.unicode-segmentation]
version = "1.11"
[dependencies.unicode-width]
version = "0.2"
[target."cfg(windows)".dependencies.clipboard-win]
version = "5.4"
features = ["std"]