[package]
edition = "2024"
name = "term-session-mock"
version = "0.9.8-alpha"
authors = ["Jeremy Harris <jeremy.harris@zenosmosis.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal test tooling for term-wm: a mock PTY binary and shared test helpers for cross-platform terminal stream simulation, including Windows ConPTY byte-sequence handling."
readme = "README.md"
keywords = [
"terminal",
"pty",
"testing",
"simulation",
"cross-platform",
]
categories = [
"development-tools",
"emulators",
"simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jzombie/term-wm"
resolver = "2"
[lib]
name = "term_session_mock"
path = "src/lib.rs"
[[bin]]
name = "term-session-mock"
path = "src/main.rs"
[[test]]
name = "mock_bin_tests"
path = "tests/mock_bin_tests.rs"
[dependencies.libc]
version = "0.2.186"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Networking_WinSock",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_IO",
"Win32_System_JobObjects",
"Win32_System_Pipes",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
]