rmidimap/Cargo.toml
zawz c75c7d0409 feat: additions and improvements
- add error handling
- conf: improve parsing method
- conf: change multiconnect to max_connections
- conf: add condition on value for event
- conf: add checks and default values on configs
- conf: rename shell param to cmd
- conf: add remap param
- midi: finish handling of all event types
- midi: implement regex device filter
- run: implement envmap
- alsa: implement timestamp
2023-08-21 15:24:06 +02:00

21 lines
489 B
TOML

[package]
name = "rmidimap"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1.8"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
num-traits = "0.2"
num = "0.4"
lazy_static = "1.4"
clap = { version = "4.1", features = ["derive"] }
thiserror = "1.0"
enum-display-derive = "0.1"
[target.'cfg(target_os = "linux")'.dependencies]
alsa = "0.7.0"
libc = "0.2.21"