2022-08-21 17:17:55 +00:00
|
|
|
[package]
|
2022-08-27 16:56:54 +00:00
|
|
|
name = "lux-synthese"
|
2022-08-21 17:17:55 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["tuxmain <tuxmain@zettascript.org>"]
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-08-02 06:35:09 +00:00
|
|
|
bevy = { version = "0.11.0", default-features = false, features = ["bevy_asset", "bevy_audio", "bevy_gilrs", "bevy_winit", "png", "vorbis", "x11"] }
|
|
|
|
bevy_common_assets = { version = "0.7.0", features = ["json"] }
|
|
|
|
bevy_rapier2d = "0.22.0"
|
2022-08-28 17:33:41 +00:00
|
|
|
#crossbeam-channel = "0.5.6"
|
2022-08-24 05:52:14 +00:00
|
|
|
rand = "0.8.5"
|
|
|
|
rand_distr = "0.4.3"
|
2023-08-02 06:35:09 +00:00
|
|
|
rapier2d = "0.17.2"
|
|
|
|
serde = { version = "1.0.180", 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]
|
2022-08-28 17:33:41 +00:00
|
|
|
#bevy-inspector-egui = "0.12.1"
|
2023-08-02 06:35:09 +00:00
|
|
|
bevy_mod_picking = "0.14.0"
|
2022-08-28 07:28:08 +00:00
|
|
|
# cpal = "0.14.0"
|
|
|
|
# hexodsp = { git = "https://github.com/WeirdConstructor/HexoDSP", default-features = false }
|
2023-08-02 06:35:09 +00:00
|
|
|
serde_json = "1.0.104"
|
2022-08-28 17:33:41 +00:00
|
|
|
#ticktock = "0.8.0"
|
2022-08-24 09:31:17 +00:00
|
|
|
|
|
|
|
[target."cfg(target_arch = \"wasm32\")".dependencies]
|
2022-08-27 22:10:41 +00:00
|
|
|
#cpal = { version = "0.14.0", features = ["wasm-bindgen"] }
|
2022-08-24 09:31:17 +00:00
|
|
|
|
2022-08-22 16:56:11 +00:00
|
|
|
[profile.dev.package."*"]
|
2022-08-23 15:02:13 +00:00
|
|
|
opt-level = 3
|
2022-08-26 21:54:49 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2023-08-02 06:35:09 +00:00
|
|
|
#wgpu = { git = "https://github.com/mockersf/wgpu/", branch = "unconditional-clear-workaround" }
|
|
|
|
bevy_mod_picking = { git = "https://github.com/bardt/bevy_mod_picking/", branch = "bevy_0.11" }
|