2023-07-25 20:58:08 +00:00
|
|
|
[package]
|
2023-09-28 12:10:45 +00:00
|
|
|
name = "bevy_gltf_flow"
|
|
|
|
version = "0.3.0"
|
2023-07-25 20:58:08 +00:00
|
|
|
edition = "2021"
|
2023-08-01 23:45:57 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-07-25 20:58:08 +00:00
|
|
|
|
2023-09-28 12:10:45 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"crates/bevy_gltf_components",
|
|
|
|
"crates/bevy_gltf_blueprints",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2023-08-01 23:45:57 +00:00
|
|
|
[dev-dependencies]
|
2023-09-28 12:10:45 +00:00
|
|
|
bevy="0.11.2"
|
2023-08-01 23:45:57 +00:00
|
|
|
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" }
|
2023-09-28 12:10:45 +00:00
|
|
|
bevy_asset_loader = { version = "0.17.0", features = ["standard_dynamic_assets" ]} #version = "0.16",
|
|
|
|
rand = "0.8.5"
|
2023-07-25 20:58:08 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-09-28 12:10:45 +00:00
|
|
|
bevy = { version = "0.11.2", default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_gltf"] }
|
|
|
|
bevy_gltf_components = { path = "crates/bevy_gltf_components" }
|
|
|
|
bevy_gltf_blueprints = { path = "crates/bevy_gltf_blueprints" }
|
|
|
|
|
2023-07-25 20:58:08 +00:00
|
|
|
serde = "*"
|
|
|
|
ron="*"
|
2023-08-01 23:45:57 +00:00
|
|
|
|
|
|
|
[[example]]
|
2023-09-28 12:10:45 +00:00
|
|
|
name = "basic"
|
|
|
|
path = "examples/basic/main.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "advanced"
|
|
|
|
path = "examples/advanced/main.rs"
|
2023-07-25 20:58:08 +00:00
|
|
|
|
|
|
|
#### --------------------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"
|