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-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",
|
|
|
|
]
|
|
|
|
|
2022-04-04 17:53:59 +00:00
|
|
|
[dependencies.bevy_rapier2d]
|
|
|
|
git = "https://github.com/dimforge/bevy_rapier"
|
|
|
|
branch = "rapier-master"
|
|
|
|
features = ["simd-stable"]
|
|
|
|
|
2021-05-13 17:25:45 +00:00
|
|
|
[dependencies]
|
|
|
|
backtrace = "0.3"
|
2022-03-25 05:20:28 +00:00
|
|
|
bevy_input_actionmap = { git = "https://github.com/lightsoutgames/bevy_input_actionmap" }
|
|
|
|
bevy_openal = { git = "https://github.com/lightsoutgames/bevy_openal" }
|
|
|
|
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"
|
|
|
|
derive_more = "0.99"
|
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-03-07 16:56:06 +00:00
|
|
|
sentry = "0.25"
|
2021-11-29 18:29:45 +00:00
|
|
|
serde = "1"
|
2021-05-13 17:25:45 +00:00
|
|
|
shadowcast = "0.8"
|
2022-04-04 17:53:59 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
rapier2d = { git = "https://github.com/dimforge/rapier", rev = "7efcff615e821" }
|