22 lines
541 B
TOML
22 lines
541 B
TOML
[package]
|
|
name = "compost"
|
|
description = "show stats for running docker compose projects"
|
|
authors = ["Joakim Hulthe <joakim@hulthe.net>"]
|
|
version = "1.0.0"
|
|
license = "MPL-2.0"
|
|
edition = "2021"
|
|
|
|
|
|
[dependencies]
|
|
clap = { version = "3.1.9", features = ["derive"] }
|
|
crossterm = "0.23.2"
|
|
tui = "0.17.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
async-trait = "0.1.53"
|
|
|
|
[dependencies.tokio]
|
|
version = "1.17.0"
|
|
features = ["rt-multi-thread", "fs", "macros", "process", "sync", "time", "io-util", "parking_lot"]
|