-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
53 lines (46 loc) · 1.29 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
[package]
name = "taipo"
version = "0.6.0"
authors = ["Rob Parrett <[email protected]>"]
edition = "2021"
repository = "https://github.com/rparrett/taipo"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.14", default-features = false, features = [
"bevy_asset",
"bevy_audio",
"bevy_winit",
"bevy_core_pipeline",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"multi_threaded",
"png",
"x11",
"vorbis",
"webgl2",
] }
bevy_asset_loader = "0.21"
bevy_common_assets = { version = "0.11", features = ["ron"] }
bevy_ecs_tilemap = { version = "0.14", features = ["atlas"] }
tiled = { version = "0.11", default-features = false }
serde = { version = "1", features = ["derive"] }
anyhow = "1.0"
ron = "0.8"
chumsky = "0.9"
rand = { version = "0.8" }
[lints.clippy]
type_complexity = "allow"
too_many_arguments = "allow"
manual_let_else = "warn"
redundant_else = "warn"
match_same_arms = "warn"
semicolon_if_nothing_returned = "warn"
map_flatten = "warn"
# Enable only a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3