-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
59 lines (51 loc) · 1.33 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 = "rusty-lander"
version = "0.8.5"
edition = "2021"
license = "MIT"
authors = ["David Romaní <[email protected]>"]
repository = "https://github.com/davidromani/rusty-lander"
description = "a Jupiter Lander video game port made with Rust & Bevy game engine"
readme = "README.md"
[dependencies]
avian2d = "0.1"
bevy = "0.14"
bevy-persistent = { version = "0.6.0", features = ["json"] }
bevy_collider_gen = { version = "0.2", default-features = false, features = ["avian2d"] }
bevy_hanabi = { version = "0.12", default-features = false, features = ["2d"] }
iyes_perf_ui = "0.3"
leafwing-input-manager = "0.15"
log = { version = "0.4", features = [
"max_level_debug",
"release_max_level_warn",
] }
rand = "0.8"
svg = "0.18"
tracing = { version = "0.1", features = [
"max_level_debug",
"release_max_level_warn",
] }
serde = { version = "1.0.213", features = ["derive"] }
dirs = "5.0.1"
[workspace]
resolver = "2" # Important! wgpu/Bevy needs this!
[profile.dev]
opt-level = 1
debug = 1
[profile.dev.package."*"]
opt-level = 2
debug = false
[profile.dev.package.wgpu-types]
debug-assertions = false
[profile.release]
codegen-units = 1
lto = "thin"
opt-level = "s"
strip = "debuginfo"
[profile.release-native]
opt-level = 3
inherits = "release"
strip = "none"
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"