16 lines
421 B
TOML
16 lines
421 B
TOML
[package]
|
|
name = "bevy_synthizer"
|
|
version = "0.1.0"
|
|
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
bevy = { version = "0.7", default-features = false }
|
|
synthizer = "0.5"
|
|
|
|
[dev-dependencies]
|
|
bevy = { version = "0.7", default-features = true } |