Initial commit for rewrite

This commit is contained in:
2025-04-05 00:50:12 +03:00
commit 5b686e38c4
9 changed files with 1053 additions and 0 deletions

18
Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
cargo-features = ["edition2024"]
[package]
name = "rpi-fan-control-oxidized"
version = "0.1.0"
edition = "2021"
authors = ["Yigid BALABAN <fyb@fybx.dev>"]
description = "A Raspberry Pi fan controller written in Rust"
license = "MIT"
repository = "https://github.com/fybx/rpi-fan-control-oxidized"
[dependencies]
libgpiod = "0.2.2"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
log = "0.4"
simplelog = "0.12"
ctrlc = "3.4"