generated from bevyengine/bevy_github_ci_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (36 loc) · 860 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "neon_breach"
version = "1.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
[dependencies]
bevy = { version = "0.14.0", default-features = false, features = [
"animation",
"bevy_asset",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_gltf",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"png",
"hdr",
"zstd",
"x11",
"ktx2",
"file_watcher", # Changed from "filesystem_watcher"
"multi_threaded", # Add this line
"tonemapping_luts",
"dynamic_linking" # Optional: remove if not needed
]}
bevy_asset_loader = { version = "0.21.0" }
bevy_kira_audio = { version = "0.20.0", default-features = false, features = ["wav", "ogg"] }
rand = "0.8.5"
bevy_jornet = "0.8.0"