-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
42 lines (36 loc) · 957 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
[package]
name = "bevy_mod_mipmap_generator"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
bevy = { version = "0.14", default-features = false, features = [
"bevy_render",
"bevy_asset",
"bevy_pbr",
"bevy_core_pipeline",
"bevy_scene",
"bevy_gltf",
"tonemapping_luts",
"ktx2",
"zstd",
"jpeg",
"multi_threaded",
] }
image = "0.24"
futures-lite = "1.12"
intel_tex_2 = { version = "0.4.0", optional = true }
zstd = { version = "0.13.2", optional = true }
[dev-dependencies]
bevy = { version = "0.14" }
# Enable 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
[features]
default = ["debug_text"]
compress = ["dep:intel_tex_2", "dep:zstd"]
debug_text = ["bevy/bevy_ui"]