pc-monitor/Cargo.toml
alemidev def620665e
feat: added display code, basic packet handling
added a super basic packet handling mechanism with a tiny buffer,
allowing for easier expansion later on. Added display code, waiting for
actual display to test, improved the cpu load script
2022-08-10 23:02:04 +02:00

36 lines
659 B
TOML

[package]
name = "pc-monitor"
version = "0.1.0"
authors = ["alemidev <me@alemi.dev>"]
edition = "2021"
[[bin]]
name = "pc-monitor"
test = false
bench = false
[dependencies]
panic-halt = "0.2.0"
ufmt = "0.1.0"
nb = "1"
embedded-hal = "0.2.3"
sh1106 = "0.4"
embedded-graphics = "0.7"
[dependencies.arduino-hal]
git = "https://github.com/rahix/avr-hal"
rev = "1aacefb335517f85d0de858231e11055d9768cdf"
features = ["arduino-nano"]
# Configure the build for minimal size - AVRs have very little program memory
[profile.dev]
panic = "abort"
lto = true
opt-level = "s"
[profile.release]
panic = "abort"
codegen-units = 1
debug = true
lto = true
opt-level = "s"