33 lines
808 B
TOML
33 lines
808 B
TOML
[package]
|
|
name = "kdash_client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.92", features = ["backtrace"] }
|
|
chrono = "0.4.38"
|
|
embedded-graphics = "0.8.1"
|
|
embedded-layout = "0.4.1"
|
|
env_logger = "0.11.5"
|
|
envconfig = "0.11.0"
|
|
framebuffer = "0.3.1"
|
|
futures = "0.3.31"
|
|
image = { version = "0.25.5", default-features = false, features = [
|
|
"png",
|
|
"bmp",
|
|
] }
|
|
kdash_protocol = { path = "../kdash_protocol" }
|
|
lazy_static = "1.5.0"
|
|
log = "0.4.22"
|
|
num-traits = "0.2.19"
|
|
openlipc_dyn = { git = "https://git.dergrimm.net/dergrimm/openlipc_dyn.git" }
|
|
reqwest = { version = "0.12.9", default-features = false, features = [
|
|
"json",
|
|
"rustls-tls",
|
|
"stream",
|
|
"http2",
|
|
"charset",
|
|
] }
|
|
tinybmp = "0.6.0"
|
|
tokio = { version = "1.41.0", features = ["full"] }
|
|
url = "2.5.3"
|