rhythm-open-exchange 0.6.2

A try to create the ffmpeg of vsrg
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Prelude module for convenient imports.
//!
//! Import everything you need with a single use statement:
//! ```
//! use rhythm_open_exchange::prelude::*;
//! ```

#[cfg(feature = "compression")]
pub use crate::codec::RoxCodec;
pub use crate::codec::{
    Decoder, Encoder, Format, InputFormat, OutputFormat, auto_convert, auto_decode, auto_encode,
    from_bytes, from_string,
};
pub use crate::error::{RoxError, RoxResult};
pub use crate::model::{Hitsound, Metadata, Note, NoteType, RoxChart, TimingPoint};