Implemented TCP listener

This commit is contained in:
2023-05-11 15:43:00 +02:00
parent 0352f64c0f
commit 49c30aad34
6 changed files with 349 additions and 36 deletions

View File

@@ -9,7 +9,7 @@ edition = "2021"
serde = { version = "1.0.162", features = ["derive"]}
serde_json = "1.0.96"
anyhow = "1.0.71"
tokio = { version = "1.28.0", features = ["rt", "macros", "sync", "process", "rt-multi-thread", "bytes", "io-util"] }
tokio = { version = "1.28.0", features = ["full"] }
tide = "0.16.0"
tide-websockets = "0.4.0"
d3270-common = {path = "../d3270-common"}
@@ -19,4 +19,5 @@ tracing-fmt = "0.1.1"
futures = "0.3.28"
tokio-stream = { version = "0.1.14", features = ["sync"] }
rand = "0.8.5"
base64 = "0.21.0"
base64 = "0.21.0"
lazy_static = "1.4.0"