kira 0.9.6

Expressive audio library for games
Documentation
[dependencies.assert_no_alloc]
optional = true
version = "1.1.2"

[dependencies.glam]
features = ["mint"]
version = "0.29.0"

[dependencies.mint]
version = "0.5.9"

[dependencies.paste]
version = "1.0.14"

[dependencies.ringbuf]
version = "0.3.1"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.164"

[dependencies.symphonia]
default-features = false
optional = true
version = "0.5.0"

[dependencies.triple_buffer]
version = "8.0.0"

[dev-dependencies.approx]
version = "0.5.1"

[features]
android_shared_stdcxx = ["cpal/oboe-shared-stdcxx"]
default = ["cpal", "mp3", "ogg", "flac", "wav"]
flac = ["symphonia", "symphonia/flac"]
mp3 = ["symphonia", "symphonia/mp3"]
ogg = ["symphonia", "symphonia/ogg", "symphonia/vorbis"]
wav = ["symphonia", "symphonia/wav", "symphonia/pcm"]

[lib]
name = "kira"
path = "src/lib.rs"

[package]
authors = ["Andrew Minnich <aminnich3@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["game-development", "multimedia::audio"]
description = "Expressive audio library for games"
edition = "2021"
keywords = ["gamedev", "audio", "music"]
license = "MIT OR Apache-2.0"
name = "kira"
readme = "README.md"
repository = "https://github.com/tesselode/kira"
version = "0.9.6"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.cpal]
optional = true
version = "0.15.1"

[target.'cfg(target_arch = "wasm32")'.dependencies.cpal]
features = ["wasm-bindgen"]
optional = true
version = "0.15.1"

[target.'cfg(target_arch = "wasm32")'.dependencies.send_wrapper]
version = "0.6.0"

[[test]]
name = "change_sample_rate"
path = "tests/change_sample_rate.rs"

[[test]]
name = "streaming_sound_stops_on_error"
path = "tests/streaming_sound_stops_on_error.rs"

[[test]]
name = "sync_send"
path = "tests/sync_send.rs"

[[test]]
name = "tick_accuracy"
path = "tests/tick_accuracy.rs"