[package]
name = "telnet_wrapper"
version = "0.1.0"
edition = "2021"
authors = ["justpresident"]
description = "A telnet server that wraps terminal applications, exposing them to telnet clients with proper protocol support including window size negotiation (NAWS)"
license = "MIT"
repository = "https://github.com/justpresident/telnet_wrapper"
readme = "README.md"
keywords = ["telnet", "terminal", "pty", "server", "wrapper"]
categories = ["command-line-utilities", "network-programming"]
[dependencies]
tokio = { version = "1", features = ["full"] }
portable-pty = "0.8"
clap = { version = "4", features = ["derive"] }
libtelnet-rs = "2"
bytes = "1"
[profile.release]
opt-level = 3
lto = "fat"
debug = "none"
strip = "symbols"