Implements the main MIDI daemon and the routing system. Makes a few improvements to the UI: - Allows selecting the devices to show messages from - Provides meager filtering - Prettier output of messages Reviewed-on: #1
18 lines
308 B
TOML
18 lines
308 B
TOML
[package]
|
|
name = "midi-keys"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.86"
|
|
crossbeam = "0.8.4"
|
|
eframe = "0.29.1"
|
|
egui = "0.29.1"
|
|
enigo = { version = "0.2.1", features = ["serde"] }
|
|
hex = "0.4.3"
|
|
midir = "0.10.0"
|
|
nom = "7.1.3"
|
|
thiserror = "1.0.63"
|
|
|
|
[lints.clippy]
|
|
#unwrap_used = "deny"
|