# 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" name = "micro_musicbox" version = "0.10.0" authors = ["Louis Capitanchik "] exclude = ["assets"] description = "Opinionated service interface for bevy_kira_audio" documentation = "https://docs.rs/micro_musicbox" readme = "README.md" license = "Apache-2.0" repository = "https://lab.lcr.gr/microhacks/micro-bevy-musicbox" [[example]] name = "kitchen-sink" path = "examples/kitchen_sink.rs" required-features = [ "mp3", "ogg", ] [[example]] name = "basic" path = "examples/basic.rs" required-features = ["mp3"] [[example]] name = "from-settings" path = "examples/from-settings.rs" required-features = [ "ogg", "settings", ] [dependencies.bevy] version = "0.14" default-features = false [dependencies.bevy_kira_audio] version = "0.20" default-features = false [dependencies.serde] version = "1" optional = true [dev-dependencies.bevy] version = "0.14" [dev-dependencies.log] version = "0.4" [features] default = [ "settings", "ogg", ] flac = ["bevy_kira_audio/flac"] mp3 = ["bevy_kira_audio/mp3"] ogg = ["bevy_kira_audio/ogg"] serde = ["dep:serde"] settings = ["bevy_kira_audio/settings_loader"] wav = ["bevy_kira_audio/wav"]