Initial Commit

This commit is contained in:
2022-04-18 20:53:57 +02:00
commit b9e6eeeb80
9 changed files with 1151 additions and 0 deletions

16
Cargo.toml Normal file
View File

@ -0,0 +1,16 @@
[package]
name = "composetui"
version = "0.1.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"
[dependencies.tokio]
version = "1.17.0"
features = ["rt-multi-thread", "fs", "macros", "process", "sync", "time"]