liveterm/Cargo.toml

37 lines
978 B
TOML

[package]
name = "liveterm"
version = "0.1.0"
authors = ["Michael Zhang <iptq@protonmail.com>"]
edition = "2021"
[dependencies]
anyhow = { version = "1.0.68", features = ["backtrace"] }
axum = { version = "0.6.4", features = ["ws", "http2", "macros", "headers"] }
bstr = "1.2.0"
chrono = "0.4.23"
clap = { version = "4.0.32", features = ["derive", "env"] }
dashmap = "5.4.0"
derive_builder = "0.12.0"
futures = "0.3.25"
lazy_static = "1.4.0"
libc = "0.2.139"
log = "0.4.17"
nix = "0.26.1"
parking_lot = "0.12.1"
rand = "0.8.5"
serde = "1.0.152"
serde_bytes = "0.11.9"
serde_derive = "1.0.152"
serde_json = "1.0.93"
signal-hook = "0.3.14"
tera = "1.17.1"
termios = "0.3.3"
tokio = { version = "1.24.1", features = ["full"] }
tokio-tungstenite = { version = "0.18.0", features = ["rustls-tls-webpki-roots"] }
tokio-util = { version = "0.7.4", features = ["codec"] }
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = "0.3.16"
tungstenite = "0.18.0"
url = "2.3.1"