# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.65" name = "creek" version = "1.2.2" authors = ["Billy Messenger "] include = [ "src/", "COPYRIGHT", "LICENSE-APACHE", "LICENSE-MIT", "how_it_works.svg", ] description = "Realtime-safe disk streaming to/from audio files" documentation = "https://docs.rs/creek" readme = "README.md" keywords = [ "audio", "io", "disk", "stream", ] categories = ["multimedia::audio"] license = "MIT OR Apache-2.0" repository = "https://github.com/MeadowlarkDAW/creek" [profile.dev] opt-level = 2 [dependencies.creek-core] version = "0.2.2" [dependencies.creek-decode-symphonia] version = "0.3.1" optional = true [dependencies.creek-encode-wav] version = "0.2.0" optional = true [features] decode = ["creek-decode-symphonia"] decode-aac = ["creek-decode-symphonia/aac"] decode-alac = ["creek-decode-symphonia/alac"] decode-all = [ "decode-aac", "decode-alac", "decode-flac", "decode-mp3", "decode-pcm", "decode-isomp4", "decode-ogg", "decode-vorbis", "decode-wav", ] decode-flac = ["creek-decode-symphonia/flac"] decode-isomp4 = ["creek-decode-symphonia/isomp4"] decode-mp3 = ["creek-decode-symphonia/mp3"] decode-ogg = ["creek-decode-symphonia/ogg"] decode-open-source = [] decode-pcm = ["creek-decode-symphonia/pcm"] decode-vorbis = ["creek-decode-symphonia/vorbis"] decode-wav = ["creek-decode-symphonia/wav"] default = [ "decode", "encode-wav", ] encode-wav = ["creek-encode-wav"]