generated from NiklasEi/bevy_game_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (47 loc) · 1.96 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "clrs"
version = "0.1.0"
publish = false
authors = ["Noah Shomette <git@noahshomette.me>", "Kolbe Shomette"]
edition = "2021"
exclude = ["dist", "build", "assets", "credits"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = true
codegen-units = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[features]
dev = ["bevy/bevy_dylib"]
# Bevy defaults minus audio and some other not needed things
# see https://github.com/bevyengine/bevy/blob/main/Cargo.toml#L31-L54
default = ["bevy/animation", "bevy/bevy_asset", "bevy/bevy_scene", "bevy/bevy_winit", "bevy/bevy_core_pipeline", "bevy/bevy_pbr", "bevy/bevy_gltf", "bevy/bevy_render", "bevy/bevy_sprite", "bevy/bevy_text", "bevy/bevy_ui", "bevy/png", "bevy/hdr", "bevy/zstd", "bevy/x11", "bevy/ktx2", "bevy/filesystem_watcher", "bevy/tonemapping_luts", "bevy/wav", "bevy_kira_audio/wav"]
[dependencies]
bevy = { version = "0.10", default-features = false }
bevy_kira_audio = { version = "0.15" }
bevy_asset_loader = { version = "0.15", features = ["serde", "bevy_common_assets"] }
rand = "0.8.3"
bevy_ggf = { git = "https://github.com/NoahShomette/bevy_ggf.git", branch = "rework-game-away-from-reflection" }
ns_defaults = { git = "https://github.com/NoahShomette/ns_defaults.git" }
bevy_ecs_tilemap = "0.10.0"
leafwing-input-manager = "0.9.1"
num = "0.4.0"
serde = "1.0.160"
bevy_common_assets = { version = "0.6.0", features = ["ron", "serde_ron", "json", "serde_json"] }
bevy_vector_shapes = "0.4.4"
bevy_tweening = "0.7.0"
bincode = { version = "*" }
# keep the following in sync with Bevy's dependencies
winit = { version = "0.28", default-features = false }
image = { version = "0.24", default-features = false }
bevy-inspector-egui = "0.18.3"
bevy_splash_screen = "0.3.0"
[build-dependencies]
embed-resource = "1.4"
[patch.crates-io]
bevy_tweening = { git = "https://github.com/sibsibsib/bevy_tweening", branch = "mirrored_repeat_fix" }