-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Cargo.toml
55 lines (51 loc) · 1.67 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "viddy"
license = "MIT"
version = "1.3.0"
edition = "2021"
description = "A modern watch command"
authors = ["Takumasa Sakao @sachaos <[email protected]>"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ansi-parser = "0.9.1"
ansi-to-tui = "4.1.0"
anstyle = "1.0.10"
anstyle-parse = { version = "0.2.6", features = ["utf8"] }
better-panic = "0.3.0"
chrono = "0.4.38"
clap = { version = "4.5.21", features = ["derive", "cargo", "wrap_help", "unicode", "string", "unstable-styles"] }
color-eyre = "0.6.3"
config = "0.14.1"
crossterm = { version = "0.27.0", features = ["serde", "event-stream"] }
derive_deref = "1.1.1"
directories = "5.0.1"
dissimilar = "1.0.9"
futures = "0.3.31"
human-panic = "2.0.2"
humantime = "2.1.0"
json5 = "0.4.1"
libc = "0.2.166"
log = "0.4.22"
pretty_assertions = "1.4.1"
ratatui = { version = "0.26.3", features = ["serde", "macros"] }
rusqlite = { version = "0.32.1", features = ["bundled", "chrono"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_with = { version = "3.11.0", features = ["chrono_0_4"] }
signal-hook = "0.3.17"
similar = "2.6.0"
strip-ansi-escapes = "0.2.0"
strum = { version = "0.26.3", features = ["derive"] }
tempfile = "3.14.0"
tokio = { version = "1.41.1", features = ["full"] }
tokio-util = "0.7.12"
toml = "0.8.19"
tracing = "0.1.41"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "serde"] }
tui-input = "0.9.0"
tui-widget-list = "0.9.0"
unicode-width = "0.1.14"
[build-dependencies]
vergen = { version = "8.3.2", features = [ "build", "git", "gitoxide", "cargo" ]}