[package]
edition = "2021"
name = "teletypewriter"
version = "0.4.2"
authors = ["Raphael Amorim <rapha850@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust crate to create a pseudoterminal (pty) that emulates a tty, which is a command in Unix and Unix-like operating systems to print the file name of the terminal connected to standard input. tty stands for TeleTYpewriter. This project is created and maintained for Rio terminal purposes but feel free to use it."
documentation = "https://docs.rs/crate/teletypewriter/latest"
readme = "README.md"
license = "MIT"
repository = "https://github.com/raphamorim/rio"
[lib]
name = "teletypewriter"
path = "src/lib.rs"
[[example]]
name = "non_blocking"
path = "examples/non_blocking.rs"
[[example]]
name = "spawn"
path = "examples/spawn.rs"
[dependencies.corcovado]
version = "0.4.2"
[dependencies.dirs]
version = "6.0.0"
[dependencies.libc]
version = "0.2.185"
[dependencies.tracing]
version = "0.1.41"
[target."cfg(unix)".dependencies.iovec]
version = "0.1.4"
[target."cfg(unix)".dependencies.signal-hook]
version = "0.4.4"
[target."cfg(windows)".dependencies.miow]
version = "0.6.1"
[target."cfg(windows)".dependencies.parking_lot]
version = "0.12.5"
features = [
"nightly",
"hardware-lock-elision",
]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59.0"
features = [
"Win32_System_Console",
"Win32_Foundation",
"Win32_Security",
"Win32_System_LibraryLoader",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_System_IO",
]