dawproject 0.10.3

A port of DAWproject in Rust.
Documentation
#![doc = include_str!("../README.md")]

mod models;
pub mod prelude;
mod read;
mod repositories;
pub mod utils;
mod write;

pub use zip;

/// This structure contains the metadata and project of DAWproject.
pub use models::{Dawproject, DawprojectWithZip};
pub use read::{DawprojectReadError, DawprojectReader};
/// Metadata of the `metadata.xml` file.
pub use repositories::metadata::MetaData;
/// Project of the `project.xml` file.
pub use repositories::project::ProjectType as Project;
pub use repositories::*;
pub use write::{DawprojectWriteError, DawprojectWriter};