liveterm/Cargo.toml

26 lines
638 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"] }
chrono = "0.4.23"
clap = { version = "4.0.32", features = ["derive"] }
futures = "0.3.25"
libc = "0.2.139"
log = "0.4.17"
nix = "0.26.1"
parking_lot = "0.12.1"
serde = "1.0.152"
serde_derive = "1.0.152"
serde_json = "1.0.91"
signal-hook = "0.3.14"
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"] }
tokio-util = { version = "0.7.4", features = ["codec"] }
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = "0.3.16"