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