Added much documentation

This commit is contained in:
Jamie Hardt
2020-11-20 19:13:53 -08:00
parent 4ca6a039d1
commit 1f1870fb41
4 changed files with 81 additions and 7 deletions

View File

@@ -1,6 +1,17 @@
extern crate encoding;
extern crate byteorder;
/**!
* bwavfile
*
* Rust Wave File Reader/Writer with Broadcast-WAV, MBWF and RF64 Support
*
* This crate is currently a work-in-progress (I'm using it to teach myself
* rust) so the interface may change dramatically and not all features work.
*
!*/
mod parser;
mod fourcc;
mod errors;