# 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.74" name = "audioadapter" version = "0.2.1" authors = ["HEnquist "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A library for making it easier to work with buffers of audio data" readme = "README.md" keywords = [ "audio", "buffer", "dsp", "sample", "pcm", ] categories = ["multimedia::audio"] license = "MIT" repository = "https://github.com/HEnquist/audioadapter-rs" [lib] name = "audioadapter" path = "src/lib.rs" [[example]] name = "bytes_to_samples" path = "examples/bytes_to_samples.rs" [[example]] name = "custom_adapter" path = "examples/custom_adapter.rs" [[bench]] name = "iteration" path = "benches/iteration.rs" harness = false [dependencies.audio-core] version = "0.2.0" optional = true [dependencies.num-traits] version = "0.2.15" [dev-dependencies.audio] version = "0.2.0" [dev-dependencies.criterion] version = "0.5" [features] audio = ["audio-core"] default = [ "std", "audio", ] std = []