2022-08-21 17:17:55 +00:00
|
|
|
[package]
|
|
|
|
name = "bevyjam"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["tuxmain <tuxmain@zettascript.org>"]
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-24 21:11:59 +00:00
|
|
|
bevy = "0.8.1"
|
2022-08-25 17:55:34 +00:00
|
|
|
bevy_common_assets = { version = "0.3.0", features = ["json"] }
|
2022-08-21 17:17:55 +00:00
|
|
|
bevy-inspector-egui = "0.12.1"
|
2022-08-23 15:02:13 +00:00
|
|
|
bevy_rapier2d = "0.16.2"
|
|
|
|
crossbeam-channel = "0.5.6"
|
2022-08-24 05:52:14 +00:00
|
|
|
rand = "0.8.5"
|
|
|
|
rand_distr = "0.4.3"
|
2022-08-24 21:11:59 +00:00
|
|
|
rapier2d = "0.14.0"
|
2022-08-25 17:55:34 +00:00
|
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
2022-08-22 16:56:11 +00:00
|
|
|
|
2022-08-24 09:31:17 +00:00
|
|
|
[target."cfg(not(target_arch = \"wasm32\"))".dependencies]
|
|
|
|
cpal = "0.14.0"
|
|
|
|
hexodsp = { git = "https://github.com/WeirdConstructor/HexoDSP", default-features = false }
|
|
|
|
ticktock = "0.8.0"
|
|
|
|
|
|
|
|
[target."cfg(target_arch = \"wasm32\")".dependencies]
|
|
|
|
|
2022-08-22 16:56:11 +00:00
|
|
|
[profile.dev.package."*"]
|
2022-08-23 15:02:13 +00:00
|
|
|
opt-level = 3
|