2019-01-03 17:15:07 +00:00
|
|
|
[package]
|
|
|
|
|
name = "webterm"
|
2025-11-28 22:43:49 +00:00
|
|
|
description = "socktop xterm.js - based webterminal"
|
|
|
|
|
repository = "https://gt.wittyoneoff.com/jason/socktop-webterm"
|
2019-06-05 13:33:31 +00:00
|
|
|
documentation = "https://docs.rs/webterm"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
categories = ["web-programming", "web-programming::websocket", "web-programming::http-server", "command-line-utilities"]
|
|
|
|
|
keywords = ["terminal", "xterm", "websocket", "terminus", "console"]
|
2025-11-30 16:39:48 +00:00
|
|
|
version = "0.3.5"
|
2025-11-28 09:31:33 +00:00
|
|
|
authors = ["fabian.freyer@physik.tu-berlin.de","jasonpwitty+socktop@proton.me"]
|
2025-11-28 22:43:49 +00:00
|
|
|
edition = "2021"
|
2019-03-04 07:24:56 +00:00
|
|
|
license = "BSD-3-Clause"
|
2019-01-03 17:15:07 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-11-28 22:43:49 +00:00
|
|
|
actix-files = "0.6"
|
|
|
|
|
actix-web = "4.9"
|
|
|
|
|
actix-web-actors = "4.3"
|
|
|
|
|
actix = "0.13"
|
|
|
|
|
actix-rt = "2.10"
|
|
|
|
|
futures = "0.3"
|
|
|
|
|
handlebars = "6.3"
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
|
|
|
tokio = { version = "1.42", features = ["full"] }
|
|
|
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
|
|
|
|
portable-pty = "0.8"
|
|
|
|
|
bytes = "1.9"
|
|
|
|
|
log = "0.4"
|
|
|
|
|
env_logger = "0.11"
|
|
|
|
|
libc = "0.2"
|
2025-11-30 11:34:08 +00:00
|
|
|
pop-telemetry = "0.12.1"
|
|
|
|
|
dirs = "5.0"
|
2019-03-29 13:48:31 +00:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "webterm"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "webterm-server"
|
2019-03-29 16:51:42 +00:00
|
|
|
path = "src/server.rs"
|