-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 1.07 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
[package]
name = "bevy_fake_interior"
version = "0.2.0"
edition = "2021"
authors = ["Robert G. Jakabosky <rjakabosky+neopallium@neoawareness.com>"]
license = "MIT/Apache-2.0"
description = "Fake interior material for Bevy."
keywords = ["fake_interior", "bevy"]
repository = "https://github.com/Neopallium/bevy_fake_interior"
homepage = "https://github.com/Neopallium/bevy_fake_interior"
exclude = [
"examples/*",
"assets/polyhaven.com/*",
"assets/textures/*",
]
[dependencies]
bevy = { version = "0.15.1", default-features = false, features = ["bevy_asset", "bevy_render", "bevy_pbr"] }
[dev-dependencies]
bevy = { version = "0.15.1", features = ["file_watcher", "embedded_watcher", "basis-universal", "jpeg", "tga", "exr", "zlib", "zstd", "ktx2"] }
bevy-inspector-egui = { version = "0.28" }
bevy_panorbit_camera = { version = "0.21", features = ["bevy_egui"] }
bevy_spectator = "0.7.0"
# Enable 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