-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 1.16 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (33 loc) · 1.16 KB
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
[package]
name = "unifand"
version = "0.6.2"
edition = "2021"
# Tracks the pinned toolchain exactly (mise.toml, Dockerfile, ci.yaml) via
# renovate.json5's "rust toolchain" group — NOT a back-compat policy. unifand is
# never published to crates.io and ships only as a container image, so nothing
# consumes an MSRV promise; this exists to give a clear "requires rustc X"
# error instead of a confusing compile failure when someone builds outside
# `mise install`. Three-part on purpose so one regex shape covers all four pins.
rust-version = "1.98.0"
license = "MIT"
description = "GPU-led fan-curve daemon for the Lian Li UNI HUB SL V2"
repository = "https://github.com/CharlieSu/unifand"
homepage = "https://github.com/CharlieSu/unifand"
keywords = ["fan-control", "kubernetes", "lian-li", "thermal", "homelab"]
categories = ["hardware-support"]
[dependencies]
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_ignored = "0.1"
toml = "1.0"
libc = "0.2"
nvml-wrapper = "0.12"
tiny_http = "0.12"
signal-hook = "0.4"
log = "0.4"
env_logger = { version = "0.11", default-features = false }
[dev-dependencies]
tempfile = "3"
[profile.release]
strip = true
lto = true