35 lines
827 B
TOML
35 lines
827 B
TOML
[package]
|
|
name = "helms-display"
|
|
version = "0.1.0"
|
|
authors = ["Jakob Dalsgaard <jakob@dalsgaard.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[target.armv7-unknown-linux-gnueabihf.dependencies]
|
|
rppal = "0.13.1"
|
|
|
|
[target.x86_64-apple-darwin.dependencies]
|
|
minifb = "0.20"
|
|
|
|
[target.aarch64-apple-darwin.dependencies]
|
|
minifb = "0.20"
|
|
|
|
[dependencies]
|
|
image = "0.23.14"
|
|
imageproc = "0.22.0"
|
|
arrayref = "*"
|
|
chrono = { version = "*", features = [ "serde" ] }
|
|
chrono-tz = "*"
|
|
euclid = "*"
|
|
log = "*"
|
|
log4rs = { version = "*", features = ["file", "yaml_format", "console_appender"] }
|
|
xml-rs = "*"
|
|
text_io = "*"
|
|
serde = { version = "*", features = ["derive"] }
|
|
serde_json = "*"
|
|
rusttype = "*"
|
|
tungstenite = { version = "*", default-features = false }
|
|
url = "*"
|
|
|