-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (50 loc) · 1.12 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 = "bevy_hydrology"
version = "0.1.0"
publish = false
authors = ["Erik Vroon"]
edition = "2021"
exclude = ["dist", "build", "assets", "credits"]
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
[profile.release]
lto = true
codegen-units = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[features]
dev = [
"bevy/dynamic_linking",
]
[dependencies]
bevy = { version = "0.14.2", default-features = false, features = [
"bevy_asset",
"bevy_state",
"bevy_color",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_render",
"hdr",
"x11",
"tonemapping_luts",
"smaa_luts",
"default_font",
] }
# bevy_asset_loader = { version = "0.21" }
bevy_egui = "0.30.1"
noise = "0.9.0"
rand = { version = "0.8.5" }
# keep the following in sync with Bevy's dependencies
winit = { version = "0.30.5", default-features = false }
image = { version = "0.25", default-features = false }
bevy_panorbit_camera = "0.20.0"
[build-dependencies]
embed-resource = "1.8.0"
[lints.clippy]
wildcard_imports = "deny"