[package]
name = "framesmith-cli"
version = "0.1.0"
edition = "2024"
description = "CLI tool for controlling Samsung Frame TVs over the local network"
license = "MIT"
repository = "https://github.com/jeffmo/framesmith"
documentation = "https://docs.rs/framesmith-cli"
homepage = "https://github.com/jeffmo/framesmith"
readme = "README.md"
keywords = ["samsung", "frame", "tv", "frametv", "cli"]
categories = ["command-line-utilities", "network-programming"]
[[bin]]
name = "framesmith"
path = "src/main.rs"
[dependencies]
framesmith = { path = "../framesmith", version = "0.1.0" }
clap = { workspace = true }
clap_complete = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
anyhow = { workspace = true }
dirs = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
indicatif = { workspace = true }
libc = { workspace = true }