MacroBoard-rs/Cargo.toml

22 lines
463 B
TOML
Raw Normal View History

2019-11-22 10:24:12 +00:00
[package]
name = "macroboard"
version = "0.1.0"
authors = ["hodasemi <michaelh.95@t-online.de>"]
edition = "2018"
2019-11-22 18:02:27 +00:00
[[bin]]
name = "service"
path = "src/service.rs"
[[bin]]
name = "gui"
path = "src/gui.rs"
2019-11-22 10:24:12 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serialport = "*"
2019-11-22 18:02:27 +00:00
gtk = { version = "*", features = ["v3_24"] }
2022-07-15 17:08:22 +00:00
anyhow = "1.0"
serde = { version = "*", features = ["derive"] }
serde_json = "*"