socktop-webterm/Cargo.toml

42 lines
1.0 KiB
TOML
Raw Normal View History

2019-01-03 17:15:07 +00:00
[package]
name = "webterm"
2019-06-05 13:33:31 +00:00
description = "xterm.js - based webterminal"
repository = "https://github.com/fubarnetes/webterm"
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"]
2019-01-03 17:15:07 +00:00
version = "0.1.0"
authors = ["fabian.freyer@physik.tu-berlin.de"]
edition = "2018"
2019-03-04 07:24:56 +00:00
license = "BSD-3-Clause"
2019-01-03 17:15:07 +00:00
2019-06-05 13:33:31 +00:00
[badges]
travis-ci = { repository = "fubarnetes/webterm", branch = "master" }
maintenance = { status = "actively-developed" }
2019-01-03 17:15:07 +00:00
[dependencies]
actix-web= "0.7.19"
actix= "0.7.9"
askama = { version = "0.8.0", features= ["with-actix-web"] }
futures = "0.1.28"
2019-07-02 02:33:49 +00:00
lazy_static = "1.3.0"
libc = "0.2.59"
log = "0.4.7"
2019-01-03 17:15:07 +00:00
pretty_env_logger = "0.3.0"
serde = "1.0.94"
serde_json = "1.0.40"
2019-07-02 02:33:49 +00:00
structopt = "0.2.18"
tokio = "0.1.22"
2019-01-03 17:15:07 +00:00
tokio-codec= "0.1.1"
tokio-io= "0.1.12"
tokio-pty-process = "0.4"
2019-03-29 13:48:31 +00:00
[lib]
name = "webterm"
path = "src/lib.rs"
[[bin]]
name = "webterm-server"
path = "src/server.rs"