-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (68 loc) · 2.1 KB
/
Cargo.toml
File metadata and controls
72 lines (68 loc) · 2.1 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "patui"
version = "0.1.0"
edition = "2021"
authors = ["Steven Trotter <stevetrot@gmail.com>"]
description = "A TUI based powerful testing application built for portability and extensibility"
license = "MIT"
repository = "https://github.com/strottos/patui"
homepage = "https://github.com/strottos/patui"
[dependencies]
async-stream = "0.3.6"
better-panic = { git = "https://github.com/strottos/better-panic", branch = "upgrade-backtrace" } # Includes a fix that stops hanging on ARM Windows targets.
bincode = "1.3.3"
blake3 = "1.5.4"
bytes = { version = "1.8.0", features = ["serde"] }
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.16", features = ["cargo", "derive", "unicode", "string", "wrap_help"] }
color-eyre = { git = "https://github.com/eyre-rs/eyre/" }
#color-eyre = "0.6.3"
convert_case = "0.6.0"
crossterm = { version = "0.28.1", features = ["event-stream", "serde"] }
derive_builder = "0.20.0"
edit = "0.1.5"
etcetera = "0.8.0"
eyre = "0.6.12"
futures = "0.3.30"
human-panic = "2.0.1"
indexmap = "2.4.0"
lazy_static = "1.5.0"
libc = "0.2.158"
logos = "0.14.2"
portable-pty = { version = "0.8.1", features = ["serde"] }
prost = "0.13.4"
ratatui = { version = "0.28.1", features = ["unstable-widget-ref"] }
rmp-serde = "1.3.0"
rusqlite = { version = "0.31.0", features = ["bundled"] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
serde_yaml = "0.9.34"
strip-ansi-escapes = "0.2.0"
strum = "0.26.3"
strum_macros = "0.26.4"
tokio = { version = "1.41.1", features = [
"fs",
"io-util",
"macros",
"process",
"rt-multi-thread",
"time",
] }
tokio-rusqlite = "0.5.1"
tokio-stream = "0.1.17"
tokio-util = { version = "0.7.12", features = ["io"] }
tonic = "0.12.3"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tui-textarea = "0.6.1"
[dev-dependencies]
assert_cmd = "2.0.16"
assertor = "0.0.2"
insta = { version = "1.39.0", features = ["yaml"] }
tempfile = "3.12.0"
textwrap = "0.16.1"
tracing-test = "0.2.5"
[profile.dev.package]
insta.opt-level = 3
[build-dependencies]
tonic-build = "0.12.3"