raspi-oled/Cargo.toml

42 lines
1.2 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]
2023-10-12 12:42:54 +00:00
embedded-graphics = "0.8.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"] }
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"
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-10-12 13:35:00 +00:00
rpassword = "7.2.0"
andotp-import = "0.1.0"
totp-rs = "5.4.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]
2023-10-04 10:42:30 +00:00
pc = ["winit", "softbuffer", "image"]
2023-10-03 12:25:25 +00:00
default = [ "pc" ]
[profile.release]
codegen-units = 1
debug = true
lto = true