wavv 0.1.1

no_std library for reading wav files
Documentation
# wavv
[![Actions Status](https://github.com/samuelleeuwenburg/wavv/workflows/wavv/badge.svg)](https://github.com/samuelleeuwenburg/wavv/actions)
[![Crates.io](https://img.shields.io/crates/v/.svg)](https://crates.io/crates/wavv)

Basic `#![no_std]` library for reading wav files

example usage:

```rust
use std::fs;
use std::path::Path;
use wavv::Wave;

fn main() {
    let bytes = fs::read(Path::new("./foo.wav"));
	let wave = Wave::from_bytes(&bytes).unwrap();
}
```