1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
[package]
name = "term_input"
version = "0.2.0"
authors = ["Ömer Sinan Ağacan <omeragacan@gmail.com>"]
description = "Input handling for xterm-compatible terminals"
repository = "https://github.com/osa1/tiny"
license = "MIT"
edition = "2021"
[dependencies]
libc = "0.2"
log = "0.4"
mio = "1"
nix = { version = "0.30", features = ["fs"] }
term_input_macros = { path = "../term_input_macros" }
tokio = { version = "1.17", default-features = false, features = ["net", "rt"] }
tokio-stream = "0.1"
|