forked from stillonearth/legend_of_mierda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (61 loc) · 1.23 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
60
61
62
63
64
65
66
67
[package]
name = "legend_of_mierda"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
bevy = { version = "0.12", default-features = false, features = [
"animation",
"bevy_asset",
"bevy_gilrs",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_gltf",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"multi-threaded",
"png",
"jpeg",
"hdr",
"x11",
"bevy_gizmos",
"tonemapping_luts",
"default_font",
"webgl2",
] }
bevy_ecs_ldtk = { version = "0.9", features = [
"default",
"derive",
"atlas",
"render",
] }
bevy-inspector-egui = "0.22"
bevy_rapier2d = "0.23"
rand = "0.8.5"
pecs = "0.5"
bevy_particle_systems = "0.11"
bevy_asset_loader = "0.18"
bevy_kira_audio = "0.18"
webbrowser = { version = "0.8", features = ["hardened"] }
ffmpeg-next = "6.1"
bevy-scene-hook = "9.0"
bevy_tweening = "0.9.0"
bevy_magic_light_2d = {git="https://github.com/zaycev/bevy-magic-light-2d", rev="8ce01dc618d4905b3"}
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
[profile.release]
lto = true
codegen-units = 1
[profile.dist]
inherits = "release"
lto = "thin"
[features]
dev = [
"bevy/dynamic_linking",
]