[package]
edition = "2021"
rust-version = "1.74"
name = "shpool-vterm"
version = "0.2.2"
authors = ["Ethan Pailes <pailes@google.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
An in-memory terminal to support session restore in shpool.
"""
readme = "README.md"
keywords = [
"terminal",
"tty",
"shpool",
"tmux",
"shell",
]
license = "Apache-2.0 AND MIT"
repository = "https://github.com/shell-pool/shpool-vterm"
[features]
unstable-internal-test = []
[lib]
name = "shpool_vterm"
path = "src/lib.rs"
[[test]]
name = "altscreen"
path = "tests/altscreen.rs"
[[test]]
name = "attrs"
path = "tests/attrs.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "movement"
path = "tests/movement.rs"
[[test]]
name = "osc"
path = "tests/osc.rs"
[[test]]
name = "shift"
path = "tests/shift.rs"
[[test]]
name = "tabstops"
path = "tests/tabstops.rs"
[[test]]
name = "title"
path = "tests/title.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bitvec]
version = "1"
[dependencies.itoa]
version = "1"
[dependencies.log]
version = "0.4"
[dependencies.smallvec]
version = "1"
[dependencies.static_assertions]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.unicode-width]
version = "0.2"
[dependencies.vte]
version = "0.15"
[dev-dependencies]