2021-07-24 19:46:48 +00:00
|
|
|
[package]
|
|
|
|
name = "raspi-oled"
|
|
|
|
version = "0.1.0"
|
2022-05-06 08:48:38 +00:00
|
|
|
authors = ["FliegendeWurst <2012gdwu@posteo.de>"]
|
2021-07-24 19:46:48 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-12 12:42:54 +00:00
|
|
|
embedded-graphics = "0.8.1"
|
2021-07-24 19:46:48 +00:00
|
|
|
linux-embedded-hal = "0.3.0"
|
2021-09-08 13:42:33 +00:00
|
|
|
embedded-hal = "0.2.5"
|
|
|
|
libc = "0.2.98"
|
2024-11-08 11:48:27 +00:00
|
|
|
rusqlite = "0.32.1"
|
2024-11-08 16:43:09 +00:00
|
|
|
time = { version = "0.3.9", features = ["parsing", "formatting"] }
|
2023-10-05 10:56:25 +00:00
|
|
|
time-tz = "2"
|
2023-10-04 10:42:30 +00:00
|
|
|
image = { version = "0.24.1", optional = true }
|
2022-04-28 19:14:26 +00:00
|
|
|
serde_json = "1.0.79"
|
|
|
|
serde_derive = "1.0.136"
|
|
|
|
serde = "1.0.136"
|
2023-10-12 12:42:54 +00:00
|
|
|
rppal = { version = "0.14.1", features = ["hal"] }
|
|
|
|
ssd1351 = { git = "https://github.com/FliegendeWurst/ssd1351-rust", rev = "3de5be50bd9a59391c669aec8357923a56d121f6" }
|
2022-04-28 19:14:26 +00:00
|
|
|
display-interface-spi = "0.4.1"
|
2024-11-18 22:10:57 +00:00
|
|
|
ureq = { version = "=3.0.0-rc2", default-features = false, features = ["rustls"] }
|
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"
|
2024-11-18 22:10:57 +00:00
|
|
|
gpiocdev = "0.7.2"
|
2023-10-12 13:35:00 +00:00
|
|
|
rpassword = "7.2.0"
|
|
|
|
andotp-import = "0.1.0"
|
|
|
|
totp-rs = "5.4.0"
|
2024-11-08 11:48:27 +00:00
|
|
|
color_space = "0.5.4"
|
2023-09-24 10:36:32 +00:00
|
|
|
#gpio-am2302-rs = { git = "https://github.com/FliegendeWurst/gpio-am2302-rs" }
|
2021-07-24 19:46:48 +00:00
|
|
|
|
2023-10-03 12:25:25 +00:00
|
|
|
[features]
|
2023-10-04 10:42:30 +00:00
|
|
|
pc = ["winit", "softbuffer", "image"]
|
2024-11-18 22:10:57 +00:00
|
|
|
default = ["pc"]
|
2023-10-03 12:25:25 +00:00
|
|
|
|
2021-07-24 19:46:48 +00:00
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
debug = true
|
|
|
|
lto = true
|