liveterm/Cargo.toml

36 lines
963 B
TOML
Raw Normal View History

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