[package] name = "creek-decode-symphonia" version = "0.3.1" authors = ["Billy Messenger "] edition = "2021" license = "MIT OR Apache-2.0" keywords = ["audio", "io", "disk", "stream"] categories = ["multimedia::audio"] description = "Audio file decoding for creek" documentation = "https://docs.rs/creek-decode-wav" repository = "https://github.com/RustyDAW/creek" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] creek-core = { version = "0.2.1", path = "../core" } log = "0.4" symphonia = "0.5" [dev-dependencies] float-cmp = "0.9" [features] aac = [ "symphonia/aac" ] alac = [ "symphonia/alac" ] flac = [ "symphonia/flac" ] mp3 = [ "symphonia/mp3" ] pcm = [ "symphonia/pcm" ] isomp4 = [ "symphonia/isomp4" ] ogg = [ "symphonia/ogg" ] vorbis = [ "symphonia/vorbis" ] wav = [ "symphonia/wav" ]