rofaxul/Cargo.toml
2024-02-12 09:04:38 +01:00

34 lines
746 B
TOML

[package]
name = "rofaxul"
description = "Fork from luxafor"
version = "0.1.0"
authors = ["Simon Johnston <johnstonskj@gmail.com>", "Maxime Augier <max@xolus.net>"]
repository = "https://github.com/maugier/rofaxul"
edition = "2021"
license = "MIT"
readme = "README.md"
publish = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
[features]
usb = ["hidapi"]
webhook = ["ureq"]
[[bin]]
name = "lux"
path = "src/bin/main.rs"
required-features = ["command-line"]
[dependencies]
log = "0.4.11"
thiserror = "1.0.56"
#[feature-dependencies]
hidapi = { version = "2.4.1", optional = true }
ureq = { version = "2.9.1", optional = true }
clap = { version = "4.4.18", optional = true, features = ["derive"] }