-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (32 loc) · 1007 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "lpl"
authors = ["SOFe <[email protected]>"]
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0"
repository = "https://github.com/SOF3/lpl"
description = "A command-line utility to plot charts from line-based inputs."
[dependencies]
anyhow = "1.0.91"
arcstr = "1.2.0"
bitflags = "2.6.0"
chrono = "0.4.38"
clap = { version = "4.5.20", features = ["derive", "cargo"] }
crossterm = "0.28.1"
csv = "1.3.0"
ctrlc = "3.4.5"
flexi_logger = "0.29.5"
futures = "0.3.31"
log = "0.4.22"
notify = "6.1.1"
num-traits = "0.2.19"
parking_lot = "0.12.3"
plotters = {version = "0.3.6", default-features = false, features = ["line_series"]}
plotters-ratatui-backend = {version = "0.1.2", features = ["widget"]}
portrait = "0.3.0"
rand = "0.8.5"
ratatui = "0.25.0"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = { version = "1.0.132", features = ["raw_value"] }
tokio = { version = "1.41.0", features = ["fs", "macros", "rt-multi-thread", "io-util", "time"] }
tokio-util = "0.7.12"