[package]
edition = "2021"
rust-version = "1.84"
name = "huesmith-core"
version = "0.1.0"
authors = ["Engin Açıkgöz <engin.acikgoz@protonmail.com>"]
build = false
exclude = [".cargo"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Platform-agnostic core for Hue-compatible Zigbee lights: color math, ZCL light state machine, and scene parsing"
homepage = "https://github.com/canack/huesmith"
readme = "README.md"
keywords = [
"zigbee",
"hue",
"lighting",
"led",
"color",
]
categories = ["embedded"]
license = "MIT"
repository = "https://github.com/canack/huesmith"
[lib]
name = "huesmith_core"
path = "src/lib.rs"
[[test]]
name = "color"
path = "tests/color.rs"
[[test]]
name = "device"
path = "tests/device.rs"
[[test]]
name = "light_state"
path = "tests/light_state.rs"
[dependencies.log]
version = "0.4"