Added terminal client

This commit is contained in:
2023-05-12 20:59:45 +02:00
parent 4e891ce3a4
commit fdbb661c17
3 changed files with 406 additions and 0 deletions

15
d3270console/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "d3270console"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.28.1", features = ["full"] }
crossterm = { version = "0.26.1", features = ["event-stream"] }
d3270-common = {path = "../d3270-common"}
serde_json = "1.0.96"
structopt = "0.3.26"
anyhow = "1.0.71"
futures = "0.3.28"