blackout/Cargo.toml

63 lines
1.4 KiB
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>"]
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
[features]
2024-07-03 14:44:00 +00:00
default = ["speech_dispatcher_0_11"]
2022-12-19 20:08:31 +00:00
speech_dispatcher_0_9 = ["bevy_tts/speech_dispatcher_0_9"]
speech_dispatcher_0_10 = ["bevy_tts/speech_dispatcher_0_10"]
2022-09-07 18:55:55 +00:00
speech_dispatcher_0_11 = ["bevy_tts/speech_dispatcher_0_11"]
2024-12-01 23:54:55 +00:00
[dependencies.bevy]
version = "0.14"
default-features = false
features = [
"android_shared_stdcxx",
"animation",
"bevy_animation",
"bevy_asset",
"bevy_color",
"bevy_core_pipeline",
"bevy_gilrs",
"bevy_gizmos",
"bevy_gltf",
"bevy_pbr",
"bevy_render",
"bevy_scene",
"bevy_sprite",
"bevy_state",
"bevy_text",
"bevy_ui",
"bevy_winit",
"default_font",
"hdr",
"ktx2",
"multi_threaded",
"png",
"smaa_luts",
"sysinfo_plugin",
"tonemapping_luts",
"webgl2",
"x11",
"zstd",
]
2021-05-13 17:25:45 +00:00
[dependencies]
2024-10-06 16:10:46 +00:00
avian2d = "0.1"
bevy_synthizer = "0.8"
2024-07-07 18:07:28 +00:00
bevy_tts = { version = "0.9", default-features = false, features = ["tolk"] }
2021-05-13 17:25:45 +00:00
coord_2d = "0.3"
2023-03-28 16:57:37 +00:00
here_be_dragons = { version = "0.3", features = ["serde"] }
leafwing-input-manager = "0.15"
2022-03-21 14:14:44 +00:00
maze_generator = "2"
once_cell = "1"
2022-12-19 20:08:31 +00:00
pathfinding = "4"
2021-05-13 17:25:45 +00:00
rand = "0.8"
serde = "1"
2024-12-01 23:54:55 +00:00
shadowcast = "0.8"