[package]
edition = "2024"
rust-version = "1.96"
name = "typ-panel-editor"
version = "0.2.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Editor panel 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_panel_editor"
path = "src/lib.rs"
[[test]]
name = "clipboard"
path = "tests/clipboard.rs"
[[test]]
name = "edit"
path = "tests/edit.rs"
[[test]]
name = "editor"
path = "tests/editor.rs"
[[test]]
name = "gutter"
path = "tests/gutter.rs"
[[test]]
name = "horizontal"
path = "tests/horizontal.rs"
[[test]]
name = "indent"
path = "tests/indent.rs"
[[test]]
name = "keys"
path = "tests/keys.rs"
[[test]]
name = "motion"
path = "tests/motion.rs"
[[test]]
name = "mouse"
path = "tests/mouse.rs"
[[test]]
name = "multicursor"
path = "tests/multicursor.rs"
[[test]]
name = "occurrence"
path = "tests/occurrence.rs"
[[test]]
name = "perf"
path = "tests/perf.rs"
[[test]]
name = "render_style"
path = "tests/render_style.rs"
[[test]]
name = "selection_render"
path = "tests/selection_render.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.crossterm]
version = "0.29"
[dependencies.ratatui]
version = "0.30.2"
[dependencies.typ-buffer]
version = "0.2.4"
[dependencies.typ-core]
version = "0.2.4"
[dependencies.unicode-segmentation]
version = "1.11"