[package]
edition = "2024"
rust-version = "1.85"
name = "emux-term"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal state engine (grid, cursor, scrollback, SGR) for emux"
readme = false
license = "MIT"
repository = "https://github.com/IISweetHeartII/emux"
resolver = "2"
[lib]
name = "emux_term"
path = "src/lib.rs"
[[test]]
name = "golden_tests"
path = "tests/golden_tests.rs"
[[test]]
name = "input_conformance"
path = "tests/input_conformance.rs"
[[test]]
name = "regressions"
path = "tests/regressions.rs"
[[test]]
name = "screen_conformance"
path = "tests/screen_conformance.rs"
[[test]]
name = "screen_input_integration"
path = "tests/screen_input_integration.rs"
[[test]]
name = "screen_operations"
path = "tests/screen_operations.rs"
[[test]]
name = "smart_scrollback"
path = "tests/smart_scrollback.rs"
[[test]]
name = "state_conformance"
path = "tests/state_conformance.rs"
[[test]]
name = "terminal_conformance"
path = "tests/terminal_conformance.rs"
[[test]]
name = "unicode_i18n"
path = "tests/unicode_i18n.rs"
[dependencies.emux-vt]
version = "0.2.0"
features = [
"serde",
"serde",
]
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.insta]
version = "1"
features = ["json"]
[dev-dependencies.serde_json]
version = "1"