-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (58 loc) · 1.67 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 = "lain"
version = "0.1.10"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
[dependencies]
bevy = { version = "0.8", default-features = false, features = [
"bevy_asset",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_scene",
"bevy_gltf",
"bevy_winit",
"bevy_render",
"bevy_text",
"png",
"animation",
"bevy_gilrs",
] }
bevy_easings = "0.8"
bevy_embedded_assets = { version = "0.4", optional = true }
bevy_jornet = "0.1"
bevy_ninepatch = "0.8"
bevy_asset_loader = "0.12"
bevy_mod_raycast = "0.6"
bevy_mod_debugdump = { version = "0.5", optional = true, default-features = false }
rand = "0.8"
bracket-noise = "0.8"
tracing = "0.1"
crossbeam-channel = "0.5"
interpolation = "0.2"
material-icons = "0.2.0"
polyanya = { git = "https://github.com/vleue/polyanya" }
[target.'cfg(target_os = "linux")'.dependencies]
bevy = { version = "0.8", features = [
"x11",
] }
[patch.crates-io]
wgpu = { git = "https://github.com/mockersf/wgpu/", branch = "unconditional-clear-workaround" }
bevy = { git = "https://github.com/mockersf/bevy/", branch = "pipeline-cache-check" }
bevy_app = { git = "https://github.com/mockersf/bevy/", branch = "pipeline-cache-check" }
bevy_ecs = { git = "https://github.com/mockersf/bevy/", branch = "pipeline-cache-check" }
[features]
default = []
hot = [ "bevy/filesystem_watcher" ]
release = [ "bundled", "tracing/release_max_level_warn" ]
bundled = [ "bevy_embedded_assets" ]
trace = [ "bevy/trace" ]
tracy = [ "bevy/trace", "bevy/trace_tracy" ]
debug-graph = [ "bevy_mod_debugdump" ]
[profile.dev.package."*"]
opt-level = 3
[profile.wasm-release]
inherits = "release"
opt-level = "z"
lto = "fat"
codegen-units = 1