raspi-oled/Cargo.toml

39 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "raspi-oled"
version = "0.1.0"
2022-05-06 08:48:38 +00:00
authors = ["FliegendeWurst <2012gdwu@posteo.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embedded-graphics = "0.7.1"
linux-embedded-hal = "0.3.0"
2021-09-08 13:42:33 +00:00
embedded-hal = "0.2.5"
libc = "0.2.98"
2022-06-19 14:48:07 +00:00
rusqlite = "0.27.0"
2022-04-28 19:14:26 +00:00
time = { version = "0.3.9", features = ["parsing"] }
time-tz = "1.0.1"
image = "0.24.1"
serde_json = "1.0.79"
serde_derive = "1.0.136"
serde = "1.0.136"
rppal = { version = "0.13.1", features = ["hal"] }
2022-05-06 08:48:38 +00:00
ssd1351 = { git = "https://github.com/FliegendeWurst/ssd1351-rust" }
2022-04-28 19:14:26 +00:00
display-interface-spi = "0.4.1"
2022-05-06 08:48:38 +00:00
ureq = { version = "2.4.0", default-features = false }
2023-10-03 12:25:25 +00:00
winit = { version = "0.28.7", optional = true }
softbuffer = { version = "0.3.1", optional = true }
rand_xoshiro = "0.6.0"
gpiocdev = "0.6.0"
2023-09-24 10:36:32 +00:00
#gpio-am2302-rs = { git = "https://github.com/FliegendeWurst/gpio-am2302-rs" }
2023-10-03 12:25:25 +00:00
[features]
pc = ["winit", "softbuffer"]
default = [ "pc" ]
[profile.release]
codegen-units = 1
debug = true
lto = true