-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (32 loc) · 1009 Bytes
/
Cargo.toml
File metadata and controls
33 lines (32 loc) · 1009 Bytes
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 <sofe2038@gmail.com>"]
version = "0.1.1"
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.30.1"
futures = "0.3.31"
log = "0.4.22"
notify = "8.0.0"
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.3.0", features = ["widget"] }
portrait = "0.3.0"
rand = "0.9.0"
ratatui = "0.29.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"