[package]
edition = "2024"
name = "framesmith-cli"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for controlling Samsung Frame TVs over the local network"
homepage = "https://github.com/jeffmo/framesmith"
documentation = "https://docs.rs/framesmith-cli"
readme = "README.md"
keywords = [
"samsung",
"frame",
"tv",
"frametv",
"cli",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/jeffmo/framesmith"
[[bin]]
name = "framesmith"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.dirs]
version = "6"
[dependencies.framesmith]
version = "0.1.0"
[dependencies.indicatif]
version = "0.17"
[dependencies.libc]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"sync",
"time",
"io-util",
"fs",
"signal",
"process",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]