amm_sdk 0.4.0

Abstract Music Manipulation (AMM) Rust SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg_attr(not(feature = "std"), no_std)]
#[macro_use]
extern crate alloc;

mod composition;
pub mod context;
pub mod modification;
pub mod note;
pub mod storage;
pub mod structure;
pub mod temporal;

#[cfg(target_arch = "wasm32")]
pub mod wasm;

pub use composition::Composition;