Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

19
vendor/ogg/README.md vendored Normal file
View File

@@ -0,0 +1,19 @@
## Ogg
An Ogg decoder and encoder. Implements the [xiph.org Ogg spec](https://www.xiph.org/vorbis/doc/framing.html) in pure Rust.
[Documentation](https://docs.rs/ogg/0.8.0).
If the `async` feature is disabled, Version 1.27.0 of Rust is the minimum supported one.
Note: `.ogg` files are vorbis encoded audio files embedded into an Ogg transport stream.
There is no extra support for vorbis codec decoding or encoding in this crate,
so you need additional functionality in order to decode them. For example, you can use the
[lewton](https://github.com/RustAudio/lewton) crate.
Also note that the encoder part of the Crate isn't as well tested as the decoder part,
in fact it was only written in order to write compact testing code for the decoder.
## License
Licensed under the three clause BSD license. For details, see the [LICENSE](LICENSE) file.