2021-05-13 17:25:45 +00:00
|
|
|
[package]
|
|
|
|
name = "blackout"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
2022-02-24 15:11:26 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
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
|
|
|
|
|
2022-03-10 21:34:38 +00:00
|
|
|
[features]
|
|
|
|
speech_dispatcher_0_10 = ["bevy_tts/speech_dispatcher_0_10"]
|
|
|
|
|
2021-05-13 17:25:45 +00:00
|
|
|
[dependencies.bevy]
|
2022-05-06 16:07:59 +00:00
|
|
|
version = "0.7"
|
2021-05-13 17:25:45 +00:00
|
|
|
default-features = false
|
|
|
|
features = [
|
|
|
|
"bevy_gilrs",
|
|
|
|
"bevy_winit",
|
|
|
|
"render",
|
|
|
|
"x11",
|
|
|
|
"wayland",
|
|
|
|
"serialize",
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
backtrace = "0.3"
|
2022-03-25 05:20:28 +00:00
|
|
|
bevy_input_actionmap = { git = "https://github.com/lightsoutgames/bevy_input_actionmap" }
|
2022-07-12 17:43:43 +00:00
|
|
|
bevy_rapier2d = { version = "0.15", features = ["serde-serialize"] }
|
2022-05-23 18:35:25 +00:00
|
|
|
bevy_synthizer = { git = "https://labs.lightsout.games/projects/bevy_synthizer" }
|
2022-03-25 05:20:28 +00:00
|
|
|
bevy_tts = { git = "https://github.com/lightsoutgames/bevy_tts", default-features = false, features = ["tolk"] }
|
2021-05-13 17:25:45 +00:00
|
|
|
coord_2d = "0.3"
|
2021-07-27 16:17:32 +00:00
|
|
|
futures-lite = "1"
|
2021-05-13 17:25:45 +00:00
|
|
|
gilrs = "0.8"
|
2022-03-18 20:58:27 +00:00
|
|
|
here_be_dragons = "0.1"
|
2022-03-21 14:14:44 +00:00
|
|
|
maze_generator = "2"
|
2021-11-29 18:29:45 +00:00
|
|
|
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-07-06 15:13:45 +00:00
|
|
|
sentry = "0.27"
|
2021-11-29 18:29:45 +00:00
|
|
|
serde = "1"
|
2022-05-06 16:07:59 +00:00
|
|
|
shadowcast = "0.8"
|