Add dedicated skinned rendering, pose restoration, shared Material and Material Instance slots, registry-driven components, Surface/Solari integration, transactional schema upgrades, navigation authoring, documentation, and evaluation evidence.
56 lines
2.0 KiB
TOML
56 lines
2.0 KiB
TOML
[package]
|
|
name = "bevy_solari"
|
|
version = "0.19.0"
|
|
edition = "2024"
|
|
description = "Provides raytraced lighting for Bevy Engine"
|
|
homepage = "https://bevy.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_anti_alias = { path = "../bevy_anti_alias", version = "0.19.0" }
|
|
bevy_app = { path = "../bevy_app", version = "0.19.0" }
|
|
bevy_asset = { path = "../bevy_asset", version = "0.19.0" }
|
|
bevy_camera = { path = "../bevy_camera", version = "0.19.0" }
|
|
bevy_color = { path = "../bevy_color", version = "0.19.0" }
|
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.19.0" }
|
|
bevy_derive = { path = "../bevy_derive", version = "0.19.0" }
|
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.19.0" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.19.0" }
|
|
bevy_shader = { path = "../bevy_shader", version = "0.19.0" }
|
|
bevy_math = { path = "../bevy_math", version = "0.19.0" }
|
|
bevy_mesh = { path = "../bevy_mesh", version = "0.19.0" }
|
|
bevy_pbr = { path = "../bevy_pbr", version = "0.19.0", features = [
|
|
"dfg_lut",
|
|
] }
|
|
bevy_platform = { path = "../bevy_platform", version = "0.19.0", default-features = false, features = [
|
|
"std",
|
|
] }
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.19.0" }
|
|
bevy_render = { path = "../bevy_render", version = "0.19.0" }
|
|
bevy_image = { path = "../bevy_image", version = "0.19.0" }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.19.0" }
|
|
bevy_transform = { path = "../bevy_transform", version = "0.19.0" }
|
|
|
|
# other
|
|
bytemuck = { version = "1" }
|
|
derive_more = { version = "2", default-features = false, features = ["from"] }
|
|
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
|
|
|
[features]
|
|
dlss = ["bevy_anti_alias/dlss"]
|
|
force_disable_dlss = ["bevy_anti_alias/force_disable_dlss"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = [
|
|
"-Zunstable-options",
|
|
"--generate-link-to-definition",
|
|
"--generate-macro-expansion",
|
|
]
|
|
all-features = true
|