-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 907 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
[package]
name = "fanservice"
version = "0.3.1"
edition = "2018"
description = "Temperature-sensor based fan-speed regulator for PowerEdge servers"
keywords = ["cli", "system", "hardware", "service", "daemon"]
categories = ["command-line-utilities", "hardware-support"]
license = "GPL-3.0"
repository = "https://github.com/kazcw/fanservice"
exclude = ["support"]
[dependencies]
bincode = "1.3"
cfg-if = "1.0"
clap = "2.33"
libc = "0.2"
log = { version = "0.4", features = ["release_max_level_warn"] }
sensors = "0.2"
serde = { version = "1.0", features = ["derive"] }
signal-hook = "0.3"
# needed for the poweredge backend
ipmiraw = { version = "0.5", optional = true }
# no loggers are included by default
env_logger = { version = "0.9", optional = true }
systemd-journal-logger = { version = "0.3", optional = true }
[features]
default = ["ipmi"]
ipmi = ["ipmiraw"]
systemd = ["systemd-journal-logger"]