[package] name = "philips_hue_client" version = "0.4.3" authors = [ "Mathieu Poumeyrol ", "Bjarke Sørensen ", "Lucas Falch Sørensen ", "Joost Yervante Damad " ] description = "Rust library for Philips Hue lights" homepage = "https://github.com/andete/philips_hue_client" repository = "https://github.com/andete/philips_hue_client" readme = "README.md" license = "MIT" keywords = [ "Philips", "hue", "light", "bulb" ] exclude = [ ".gitignore", ".travis.yml", "appveyor.yml" ] build = "build.rs" [features] default = ["serde_codegen"] upnp = ["ssdp"] nightly = ["serde_derive", "upnp"] [build-dependencies] serde_codegen = { version = "0.8", optional = true } [dependencies] regex = "0.1.17" serde = "0.8" serde_derive = { version = "0.8", optional = true } serde_json = "0.8" lazy_static = "0.2.1" ssdp = { version = "0.3", optional = true } [dependencies.hyper] version = "0.9.11" default-features = false features = ["ssl", "serde-serialization"] # build with default: # cargo build # build with nightly: # cargo build --features nightly --no-default-features