blackout/Cargo.toml

39 lines
841 B
TOML
Raw Normal View History

2021-05-13 17:25:45 +00:00
[package]
name = "blackout"
version = "0.1.0"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
2021-10-21 18:32:08 +00:00
edition = "2021"
2021-05-13 17:25:45 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.bevy]
2022-01-10 19:50:52 +00:00
version = "0.6"
2021-05-13 17:25:45 +00:00
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" }
2022-01-10 19:50:52 +00:00
bevy_rapier2d = { version = "0.12", features = ["serde-serialize", "simd-stable"] }
2021-05-13 17:25:45 +00:00
bevy_tts = { path = "../bevy_tts" }
coord_2d = "0.3"
derive_more = "0.99"
futures-lite = "1"
2021-05-13 17:25:45 +00:00
gilrs = "0.8"
2021-08-11 15:44:09 +00:00
mapgen = "0.5"
2021-05-13 17:25:45 +00:00
maze_generator = "1"
once_cell = "1"
2022-01-13 20:42:33 +00:00
pathfinding = "3"
2021-05-13 17:25:45 +00:00
rand = "0.8"
2022-01-26 19:13:23 +00:00
sentry = "0.24"
serde = "1"
2021-05-13 17:25:45 +00:00
shadowcast = "0.8"