Exclude examples/samples from crate
The crate currently pulls in the samples/ (which adds cpal as a dep) and the testsamples/ (which don't have their license specified). I don't believe these are actually necessary for the use of hound.
Cpal is a dev-dependency, used for the cpal example. You don't need it if you want to use Hound, and if you add Hound to your Cargo.toml, that will not add any transitive dependencies.
Hound is licensed under the Apache 2.0 license, including the test code and test samples. These samples are just a few bytes large, with the data hard-coded in the tests too, such as this one:
https://github.com/ruuda/hound/blob/bcd553ce377455775513afbb1c752403543bab6e/src/read.rs#L1167-L1181