blackout/Cargo.toml

43 lines
991 B
TOML

[package]
name = "blackout"
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
[features]
speech_dispatcher_0_10 = ["bevy_tts/speech_dispatcher_0_10"]
[dependencies.bevy]
version = "0.6"
default-features = false
features = [
"bevy_gilrs",
"bevy_winit",
"render",
"x11",
"wayland",
"serialize",
]
[dependencies]
backtrace = "0.3"
bevy_input_actionmap = { path = "../bevy_input_actionmap" }
bevy_openal = { path = "../bevy_openal" }
bevy_rapier2d = { version = "0.12", features = ["serde-serialize", "simd-stable"] }
bevy_tts = { path = "../bevy_tts", default-features = false, features = ["tolk"] }
coord_2d = "0.3"
derive_more = "0.99"
futures-lite = "1"
gilrs = "0.8"
mapgen = "0.5"
maze_generator = "1"
once_cell = "1"
pathfinding = "3"
rand = "0.8"
sentry = "0.25"
serde = "1"
shadowcast = "0.8"