[package]
edition = "2024"
name = "oled-notifier"
version = "0.1.0"
authors = ["Wiktor Kwapisiewicz <wiktor@metacode.biz>"]
build = false
exclude = [".github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple statistics for the ODROID-HC4 with OLED device"
readme = "README.md"
keywords = [
"embedded",
"hc4",
"odroid",
"oled",
]
categories = ["embedded"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wiktor-k/oled-notifier"
[features]
simulator = [
"dep:embedded-graphics-simulator",
"dep:unimpl",
]
[lib]
name = "oled_notifier"
path = "src/lib.rs"
[[bin]]
name = "main"
path = "src/bin/main.rs"
[[bin]]
name = "simulate"
path = "src/bin/simulate.rs"
required-features = ["simulator"]
[dependencies.display-interface]
version = "0.5.0"
[dependencies.embedded-graphics]
version = "0.8.1"
[dependencies.embedded-graphics-core]
version = "0.4.0"
[dependencies.embedded-graphics-simulator]
version = "0.7.0"
optional = true
[dependencies.linux-embedded-hal]
version = "0.4.0"
[dependencies.ssd1306]
version = "0.10.0"
[dependencies.systemstat]
version = "0.2.4"
[dependencies.unimpl]
version = "0.1.2"
optional = true