2022-05-18 18:04:58 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_synthizer"
|
2023-05-04 20:03:59 +00:00
|
|
|
version = "0.3.2"
|
2022-05-18 18:04:58 +00:00
|
|
|
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
2022-12-17 16:38:48 +00:00
|
|
|
description = "A Bevy plugin for Synthizer, a library for 3D audio and synthesis with a focus on games and VR applications"
|
2022-05-18 18:04:58 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
edition = "2021"
|
2022-12-06 22:43:37 +00:00
|
|
|
repository = "https://labs.lightsout.games/projects/bevy_synthizer"
|
2022-05-18 18:04:58 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2023-07-16 18:24:12 +00:00
|
|
|
bevy = { version = "0.11", default-features = false, features = ["bevy_asset"] }
|
2023-03-06 19:59:53 +00:00
|
|
|
synthizer = "0.5.6"
|
2022-05-18 20:39:37 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-07-16 18:24:12 +00:00
|
|
|
bevy = { version = "0.11", default-features = true }
|
2022-12-06 23:48:57 +00:00
|
|
|
|
|
|
|
[package.metadata.release]
|
|
|
|
publish = false
|
|
|
|
push = false
|
|
|
|
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]
|
2022-12-17 16:28:55 +00:00
|
|
|
pre-release-commit-message = "Release"
|