-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (39 loc) · 997 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
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
[package]
name = "last_kingdom"
version = "0.1.0"
edition = "2021"
[dependencies]
# bevy = { git = "https://github.com/bevyengine/bevy.git", branch = "latest" , features = ["dynamic"]}
bevy = { version = "0.7" }
# bevy依赖库
bevy_prototype_lyon = "0.5.0"
bevy_asset_loader = "0.10.0"
bevy_egui="0.14.0"
# 版本还是0.6
# bevy_editor_pls = {git = "https://github.com/jakobhellermann/bevy_editor_pls"}
bevy-inspector-egui = "0.11.0"
bevy_ecs_ldtk= "0.3.0"
# 工具
rust-ini = "0.18.0"
serde_json="1.0.59"
rand = "0.8.3"
bevy_pkv="0.5.0"
# 碰撞库
duckduckgeo ={git="https://github.com/tiby312/duckduckgeo"}
# broccoli = "4.1.1"
broccoli = "5.0.5"
# duckduckgeo = "0.4.2"
# 优化结构体
# dashmap="5.3.3"
# [dependencies.bevy_asset_loader_derive]
# version = "0.10.0"
# default-features = false
# features = ["render"]
crossbeam-channel = "0.5"
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
[profile.release]
lto = "thin"
codegen-units = 1