blackout/Cargo.toml
Nolan Darilek 041d9ffe7d
All checks were successful
continuous-integration/drone/push Build is passing
Bump dependencies.
2023-02-02 11:26:11 -06:00

42 lines
1.0 KiB
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_9 = ["bevy_tts/speech_dispatcher_0_9"]
speech_dispatcher_0_10 = ["bevy_tts/speech_dispatcher_0_10"]
speech_dispatcher_0_11 = ["bevy_tts/speech_dispatcher_0_11"]
[dependencies.bevy]
version = "0.9"
default-features = false
features = [
"bevy_gilrs",
"bevy_winit",
"render",
"x11",
"wayland",
"serialize",
]
[dependencies]
backtrace = "0.3"
bevy_rapier2d = "0.20"
bevy_synthizer = "0.1"
bevy_tts = { version = "0.4", default-features = false, features = ["tolk"] }
coord_2d = "0.3"
futures-lite = "1"
gilrs = "0.10"
here_be_dragons = "0.2"
leafwing-input-manager = { git = "https://github.com/ndarilek/leafwing-input-manager" }
maze_generator = "2"
once_cell = "1"
pathfinding = "4"
rand = "0.8"
serde = "1"
shadowcast = "0.8"