inky-ticker/Cargo.toml

41 lines
1,013 B
TOML

[package]
name = "inky-ticker"
version = "0.1.0"
edition = "2021"
authors = ["Felix Wittwer <dev@felixwittwer.de>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embedded-graphics = "0.7.1"
embedded-plots = "0.2.0"
tinybmp = "0.3.3"
profont = "0.5.0"
ssd1675 = { git = "https://github.com/Feliix42/ssd1675" }
#ssd1675 = { path = "../ssd1675" }
# for parsing the weather api data
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# for retrieving weather data from the API
reqwest = { version = "0.11", features = ["blocking", "json"] }
linux-embedded-hal = { version = "0.3.2", optional = true }
embedded-graphics-simulator = { version = "0.3.0", optional = true }
[features]
inky = ["linux-embedded-hal"]
simulator = ["embedded-graphics-simulator"]
[[bin]]
name = "inky"
path = "src/bin/inky.rs"
required-features = ["inky"]
[[bin]]
name = "simulator"
path = "src/bin/simulator.rs"
required-features = ["simulator"]