inky-ticker/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2022-08-02 19:50:40 +00:00
[package]
name = "inky-ticker"
version = "0.1.0"
edition = "2021"
authors = ["Felix Suchert <dev@felixsuchert.de>"]
2022-08-02 19:50:40 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-29 09:52:40 +00:00
embedded-graphics = "0.8"
embedded-plots = "0.2"
tinybmp = "0.5"
profont = "0.6"
2022-08-06 14:45:30 +00:00
ssd1675 = { git = "https://github.com/Feliix42/ssd1675" }
#ssd1675 = { path = "../ssd1675" }
2022-08-02 19:50:40 +00:00
# for parsing the weather api data
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2022-08-07 19:29:03 +00:00
# for retrieving weather data from the API
ureq = { version = "2.6", features = ["json"] }
2023-05-29 09:52:40 +00:00
# for parsing timestamps from APIs
time = { version = "0.3", features = ["macros", "parsing", "local-offset"] }
2022-08-07 19:29:03 +00:00
2022-08-02 19:50:40 +00:00
linux-embedded-hal = { version = "0.3.2", optional = true }
2023-05-29 09:52:40 +00:00
embedded-graphics-simulator = { version = "0.5", optional = true }
2022-08-02 19:50:40 +00:00
[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"]