cathode/Cargo.toml

36 lines
949 B
TOML

[package]
name = "cathode"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["ray_format"]
[dependencies]
anyhow = "1.0.71"
belly = { git = "https://github.com/jkb0o/belly", version = "0.2.0" }
bevy = { version = "0.10.1" }
bevy_eventlistener = "0.2.2"
bevy_framepace = "0.12.1"
bevy_mod_picking = { version = "0.14", default-features = false, features = ["backend_bevy_ui", "debug"] }
bevy_mod_scripting = { version = "0.3.0", features = ["rhai"] }
bevy_ninepatch = "0.10.0"
bevy_tweening = "0.7.0"
cpal = { version = "0.15.2" }
directories = "5.0.1"
ray_format = { version = "0.2.0", path = "ray_format", features = ["async_std"] }
rhai = { version = "1.14.0", features = ["sync"] }
[features]
default = ["wayland"]
jack = ["cpal/jack"]
wayland = ["bevy/wayland"]
# [profile.dev.package."*"]
# opt-level = 2
[profile.dev]
opt-level = 1