rofaxul/Cargo.toml
dependabot[bot] c4fbc56e81
cargo prod(deps): update reqwest requirement from 0.10 to 0.11
Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version.
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/seanmonstar/reqwest/compare/v0.10.0...v0.11.0)

Signed-off-by: dependabot[bot] <support@github.com>
2021-01-06 06:20:54 +00:00

38 lines
1007 B
TOML

[package]
name = "luxafor"
description = "Library, and CLI, for Luxafor lights via either USB or webhooks."
version = "0.2.2"
authors = ["Simon Johnston <johnstonskj@gmail.com>"]
repository = "https://github.com/johnstonskj/rust-luxafor"
documentation = "https://docs.rs/luxafor/0.1.0/luxafor/"
edition = "2018"
license = "MIT"
readme = "README.md"
publish = true
default-run = "lux"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
[features]
default = ["webhook"]
usb = ["hidapi"]
webhook = ["reqwest"]
command-line = ["pretty_env_logger", "structopt", "usb", "webhook"]
[[bin]]
name = "lux"
path = "src/bin/main.rs"
required-features = ["command-line"]
[dependencies]
log = "0.4.11"
error-chain = "0.12.2"
#[feature-dependencies]
hidapi = { version = "1.2.3", optional = true }
pretty_env_logger = { version = "0.4.0", optional = true }
reqwest = { version = "0.11", features = ["blocking"], optional = true }
structopt = { version = "0.3.14", optional = true }