-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (33 loc) · 967 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
34
[package]
name = "dtui"
version = "2.0.0"
edition = "2021"
default-run = "dtui"
authors = ["Troels Hoffmeyer <[email protected]>"]
description = "dBus TUI for introspecting your current dbus session/system"
license = "MIT"
repository = "https://github.com/Troels51/dtui"
rust-version = "1.80"
keywords = ["tui", "dbus"]
categories = ["command-line-utilities"]
exclude = [
".github/*",
"images/*",
]
[dependencies]
tui-tree-widget = "0.21"
crossterm = "0.27"
tokio = { version = "1.32", features = ["full"] }
async-recursion = "1.1.1"
itertools = "0.11.0"
clap = { version = "4.4.1", features = ["derive"] }
ratatui = { version = "0.27", features = ["macros"] }
tracing-error = "0.2.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json", "fmt"] }
tracing-journald = "0.3.0"
tui-textarea = "0.5.1"
chumsky = "0.9.3"
zbus = {version = "5.1.0", features = ["tokio"]}
zbus_names = "4.1.0"
zbus_xml = "5.0.1"