[package]
edition = "2021"
rust-version = "1.74"
name = "termwright-protocol"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Semantic side-channel client for the termwright terminal test driver: framing, render-commit markers, snapshot validation"
documentation = "https://docs.rs/termwright-protocol"
readme = "README.md"
keywords = [
"terminal",
"tui",
"testing",
"accessibility",
]
categories = [
"development-tools::testing",
"command-line-interface",
]
license = "MIT"
repository = "https://github.com/gorce-ai/termwright"
[features]
default = []
tracing = [
"dep:tracing",
"dep:tracing-subscriber",
]
[lib]
name = "termwright_protocol"
path = "src/lib.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "debug"
path = "tests/debug.rs"
[[test]]
name = "evidence"
path = "tests/evidence.rs"
[[test]]
name = "logs"
path = "tests/logs.rs"
[[test]]
name = "vectors"
path = "tests/vectors.rs"
[[test]]
name = "windows_named_pipe"
path = "tests/windows_named_pipe.rs"
[dependencies.base64]
version = "0.22"
[dependencies.hmac]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["raw_value"]
[dependencies.sha2]
version = "0.10"
[dependencies.subtle]
version = "2"
[dependencies.tracing]
version = "0.1"
optional = true
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"registry",
"std",
]
optional = true
default-features = false
[target."cfg(windows)".dependencies.interprocess]
version = "=2.4.2"