liveterm/Cargo.toml

36 lines
956 B
TOML
Raw Normal View History

2020-04-10 20:29:58 -05:00
[package]
2023-01-08 01:47:35 -06:00
name = "liveterm"
2020-04-10 20:29:58 -05:00
version = "0.1.0"
authors = ["Michael Zhang <iptq@protonmail.com>"]
2023-01-08 01:47:35 -06:00
edition = "2021"
2020-04-10 20:29:58 -05:00
[dependencies]
2023-01-08 01:47:35 -06:00
anyhow = { version = "1.0.68", features = ["backtrace"] }
2023-02-11 10:38:28 -06:00
axum = { version = "0.6.4", features = ["ws", "http2", "macros", "headers"] }
2023-01-08 01:47:35 -06:00
chrono = "0.4.23"
clap = { version = "4.0.32", features = ["derive"] }
2023-02-11 10:38:28 -06:00
dashmap = "5.4.0"
2023-02-10 22:56:46 -06:00
derive_builder = "0.12.0"
2023-01-08 01:47:35 -06:00
futures = "0.3.25"
2023-02-11 10:38:28 -06:00
lazy_static = "1.4.0"
2023-01-08 01:47:35 -06:00
libc = "0.2.139"
log = "0.4.17"
nix = "0.26.1"
parking_lot = "0.12.1"
2023-02-11 10:38:28 -06:00
rand = "0.8.5"
2023-01-08 01:47:35 -06:00
serde = "1.0.152"
2023-02-11 10:38:28 -06:00
serde_bytes = "0.11.9"
2023-01-08 01:47:35 -06:00
serde_derive = "1.0.152"
serde_json = "1.0.91"
signal-hook = "0.3.14"
2023-02-11 10:46:02 -06:00
tera = "1.17.1"
2022-05-09 11:32:09 -05:00
termios = "0.3.3"
2023-01-08 01:47:35 -06:00
tokio = { version = "1.24.1", features = ["full"] }
2023-02-11 10:38:28 -06:00
tokio-tungstenite = { version = "0.18.0", features = ["rustls-tls-webpki-roots"] }
2023-01-08 01:47:35 -06:00
tokio-util = { version = "0.7.4", features = ["codec"] }
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = "0.3.16"
2023-02-11 10:38:28 -06:00
tungstenite = "0.18.0"
url = "2.3.1"