[package]
name = "micromux-cli"
license-file = "../../LICENSE"
readme = "../../README.md"
documentation = "https://docs.rs/micromux-cli"
publish = true
version.workspace = true
edition.workspace = true
authors.workspace = true
description.workspace = true
homepage.workspace = true
repository.workspace = true
categories = [
"command-line-utilities",
]
keywords = [
"terminal",
"multiplexer",
"tui",
]
[lints]
workspace = true
[[bin]]
name = "micromux"
path = "./src/main.rs"
[dependencies]
color-eyre.workspace = true
tracing.workspace = true
tracing-subscriber = { version = "0", features = ["json", "env-filter"] }
tracing-appender = { version = "0" }
termcolor = "1"
codespan-reporting.workspace = true
micromux = { path = "../micromux/", version = "=0.0.6" }
micromux-tui = { path = "../micromux-tui/", version = "=0.0.6" }
tokio.workspace = true
futures.workspace = true
clap = { version = "4", features = ["derive", "env"] }