forked from robertpsoane/ducker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (52 loc) · 1.49 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
56
[package]
name = "ducker"
description = "A slightly quackers Docker TUI based on k9s 🦆"
authors = ["Robert Soane"]
version = "0.0.7"
homepage = "http://github.com/robertpsoane/ducker"
repository = "http://github.com/robertpsoane/ducker"
edition = "2021"
readme = "README.md"
license-file = "LICENSE.txt"
keywords = ["docker", "developer-tools", "ratatui", "terminal"]
categories = ["command-line-utilities", "development-tools"]
include = ["/src", "LICENSE.txt", "CHANGELOG.md", "README.md"]
[dependencies]
ansi-to-tui = "4.0.1"
async-trait = "0.1.81"
bollard = { version = "0.16.1", features = ["ssl"] }
byte-unit = { version = "5.1.4", features = ["byte"] }
chrono = "0.4.38"
clap = { version = "4.5.11", features = ["derive"] }
color-eyre = "0.6.3"
crossterm = { version = "0.27", features = ["event-stream"] }
dirs-next = "2.0.0"
dyn-clone = "1.0.17"
futures = "0.3.30"
itertools = "0.13.0"
lazy_static = "1.5.0"
ratatui = { version = "0.27.0", features = [
"serde",
"unstable-rendered-line-info",
] }
ratatui-macros = "0.4.3"
serde = "1.0.204"
serde_yml = "0.0.11"
tokio = { version = "1.39.2", features = [
"rt-multi-thread",
"macros",
"process",
] }
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tui-big-text = "0.5.2"
ureq = { version = "2.10.0", features = ["json"] }
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"
opt-level = "z"
[badges]
maintenance = { status = "actively-developed" }