-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (32 loc) · 842 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "meh-asus"
version = "0.2.1"
edition = "2021"
authors = ["Vishal Das <[email protected]>"]
repository = "https://github.com/dvishal485/meh-asus"
description = "Abstraction over ASUS hardware configurations to control it programatically on Linux."
readme = "README.md"
license = "MIT"
keywords = [
"asus",
"asus-fan",
"asusctl",
"asusd",
"asus-fan-control",
]
[dependencies]
thiserror = "2.0.3"
[dev-dependencies]
anyhow = "1.0.93" # examples and test
[features]
default = ["common-hardware"]
# abstraction over common hardware like keyboard blacklight, camera led etc.
common-hardware = []
# manual pwm mode of controlling laptop fans
pwm = []
[[example]]
name = "toggle_fan_mode"
required-features = ["pwm"]
[[example]]
name = "speed_change"
required-features = ["pwm"]