rytm-rs 0.1.3

More than safe rust abstractions over rytm-sys, an unofficial SDK for Analog Rytm MKII running firmware 1.70
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// All casts in this file are intended or safe within the context of this library.
//
// One can change `allow` to `warn` to review them if necessary.
#![allow(
    clippy::cast_lossless,
    clippy::cast_possible_truncation,
    clippy::cast_sign_loss
)]

mod metronome_settings;
mod midi_config;
mod routing;
mod sequencer_config;

pub use metronome_settings::*;
pub use midi_config::*;
pub use routing::*;
pub use sequencer_config::*;