33 lines
911 B
TOML
33 lines
911 B
TOML
[package]
|
|
name = "bevy_gltf_components"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dev-dependencies]
|
|
bevy="0.11"
|
|
bevy_rapier3d = { version = "0.22.0", features = [ "serde-serialize", "debug-render-3d", "enhanced-determinism"] }
|
|
bevy_editor_pls = { git="https://github.com/jakobhellermann/bevy_editor_pls.git" }
|
|
|
|
[dependencies]
|
|
bevy = { version = "0.11", default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_gltf"] }
|
|
serde = "*"
|
|
ron="*"
|
|
|
|
[[example]]
|
|
name = "general"
|
|
path = "examples/general/main.rs"
|
|
|
|
#### --------------------Dev/ debug-------------------------------
|
|
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.bevy]
|
|
features = ["dynamic"]
|
|
|
|
#### --------------------Production/ release-------------------------------
|
|
[profile.release]
|
|
strip = "debuginfo"
|
|
lto = "thin"
|