[package]
edition = "2024"
name = "framesmith"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for controlling Samsung Frame TVs over the local network"
homepage = "https://github.com/jeffmo/framesmith"
documentation = "https://docs.rs/framesmith"
readme = "README.md"
keywords = [
"samsung",
"frame",
"tv",
"frametv",
"smart-home",
]
categories = [
"network-programming",
"hardware-support",
]
license = "MIT"
repository = "https://github.com/jeffmo/framesmith"
[lib]
name = "framesmith"
path = "src/lib.rs"
[[example]]
name = "discover"
path = "examples/discover.rs"
[[example]]
name = "manage_art"
path = "examples/manage_art.rs"
[[example]]
name = "upload_art"
path = "examples/upload_art.rs"
[dependencies.base64]
version = "0.22"
[dependencies.futures-util]
version = "0.3"
[dependencies.image]
version = "0.25"
[dependencies.inherent]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dependencies.rustls]
version = "0.23"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"sync",
"time",
"io-util",
"fs",
"signal",
"process",
]
[dependencies.tokio-rustls]
version = "0.26"
[dependencies.tokio-tungstenite]
version = "0.26"
features = ["rustls-tls-native-roots"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"sync",
"time",
"io-util",
"fs",
"signal",
"process",
"test-util",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"