Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/examples/large_scenes/mipmap_generator/Cargo.toml
9328 views
1
[package]
2
name = "mipmap_generator"
3
version = "0.1.0"
4
edition = "2024"
5
publish = false
6
license = "MIT OR Apache-2.0"
7
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
10
[dependencies]
11
anyhow = "1"
12
bevy = { path = "../../../", default-features = false, features = [
13
"bevy_asset",
14
"bevy_scene",
15
"bevy_pbr",
16
"ktx2",
17
"jpeg",
18
"multi_threaded",
19
] }
20
image = { version = "0.25.2", default-features = false }
21
fast_image_resize = { version = "6.0", features = ["image"] }
22
futures-lite = "2.0.1"
23
tracing = "0.1"
24
intel_tex_2 = { version = "0.4.0", optional = true }
25
zstd = { version = "0.13.2", optional = true }
26
27
[dev-dependencies]
28
bevy = { path = "../../../" }
29
argh = "0.1.12"
30
31
[features]
32
default = ["debug_text", "bevy_zstd_rust"]
33
compress = ["dep:intel_tex_2", "dep:zstd"]
34
debug_text = ["bevy/bevy_ui"]
35
pbr_transmission_textures = ["bevy/pbr_transmission_textures"]
36
pbr_multi_layer_material_textures = ["bevy/pbr_multi_layer_material_textures"]
37
pbr_anisotropy_texture = ["bevy/pbr_anisotropy_texture"]
38
pbr_specular_textures = ["bevy/pbr_specular_textures"]
39
bevy_zstd_rust = ["bevy/zstd_rust"]
40
bevy_zstd_c = ["bevy/zstd_c"]
41
42