blinc_cli 0.1.13

Blinc UI Framework CLI - build, run, and hot-reload Blinc applications
[package]
name = "blinc_cli"
description = "Blinc UI Framework CLI - build, run, and hot-reload Blinc applications"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
documentation = "https://docs.rs/blinc_cli"
rust-version.workspace = true

[[bin]]
name = "blinc"
path = "src/main.rs"

[dependencies]
blinc_core = { path = "../blinc_core", version = "0.1.13" }
blinc_animation = { path = "../blinc_animation", version = "0.1.13" }

# CLI
clap.workspace = true

# File watching for hot reload
notify.workspace = true

# Async
tokio.workspace = true

# Config
toml.workspace = true
serde.workspace = true
serde_json.workspace = true

# Errors
anyhow.workspace = true
thiserror.workspace = true

# Logging
tracing.workspace = true
tracing-subscriber.workspace = true

# System paths
dirs = "5.0"