2024-06-24 13:29:59 +00:00
|
|
|
[package]
|
|
|
|
name = "pi-frame-server"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2024-07-03 23:33:04 +00:00
|
|
|
|
2024-07-16 23:55:59 +00:00
|
|
|
|
2024-06-24 13:29:59 +00:00
|
|
|
[dependencies]
|
2024-06-29 16:55:37 +00:00
|
|
|
anyhow = "1.0.86"
|
2024-07-29 21:39:49 +00:00
|
|
|
axum = { version = "0.7.5", features = ["macros", "multipart"] }
|
2024-07-27 19:11:44 +00:00
|
|
|
axum-macros = "0.4.1"
|
2024-08-07 05:03:04 +00:00
|
|
|
base64 = "0.22.1"
|
2024-06-29 16:55:37 +00:00
|
|
|
clap = { version = "4.5.7", features = ["derive"] }
|
2024-07-27 19:11:44 +00:00
|
|
|
epd-waveshare = { git = "https://github.com/caemor/epd-waveshare.git"}
|
2024-06-29 16:55:37 +00:00
|
|
|
image = "0.25.1"
|
2024-08-04 21:22:29 +00:00
|
|
|
include_dir = "0.7.4"
|
2024-07-27 19:11:44 +00:00
|
|
|
linux-embedded-hal = { version = "0.4.0"}
|
2024-07-30 05:35:43 +00:00
|
|
|
mime = "0.3.17"
|
2024-08-08 22:24:45 +00:00
|
|
|
mime_guess = "2.0.5"
|
2024-08-04 21:22:29 +00:00
|
|
|
minijinja = { version = "2.1.0", features = ["loader"] }
|
|
|
|
minijinja-embed = "2.1.1"
|
2024-06-29 16:55:37 +00:00
|
|
|
palette = "0.7.6"
|
2024-08-02 17:01:33 +00:00
|
|
|
rayon = "1.10.0"
|
2024-08-01 21:42:00 +00:00
|
|
|
rusqlite = { version = "0.32.1", features = ["bundled"] }
|
2024-07-29 17:51:51 +00:00
|
|
|
serde = { version = "1.0.204", features = ["derive"] }
|
|
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
2024-07-24 14:43:09 +00:00
|
|
|
thiserror = "1.0.63"
|
2024-07-18 12:34:28 +00:00
|
|
|
tokio = { version = "1.38.1", features = ["full"] }
|
2024-08-01 01:20:22 +00:00
|
|
|
toml = "0.8.19"
|
2024-07-28 04:01:37 +00:00
|
|
|
tower-http = { version = "0.5.2", features = ["trace"] }
|
2024-07-27 19:11:44 +00:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = "0.3.18"
|
2024-07-30 17:24:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "dithering"
|
2024-08-01 01:20:22 +00:00
|
|
|
harness = false
|