rudiments
rudiments copied to clipboard
A drum machine written in Rust
I tried installing via `cargo install` on my M1 Max chipset and it failed with the following error: >error: cannot find derive macro `Parser` in this scope --> /Users/ken/.cargo/registry/src/github.com-1ecc6299db9ec823/rudiments-0.1.1/src/main.rs:169:10 |...
Looking through the code, I can see that you wrote some code to premix the files into a single "track". This is cool and it never occurred to me that...
The [`thread::park`](https://doc.rust-lang.org/std/thread/fn.park.html) function is used to block the main thread indefinitely for play on repeat. However, per the `thread::park` documentation, this function may not actually block indefinitely... > A call...
Just tried to install on raspberrypi and got the following error: ```bash $ cargo install rudiments Updating crates.io index Downloaded rudiments v0.1.1 Downloaded 1 crate (855.8 KB) in 1.84s Installing...