@@ -3,13 +3,13 @@ title: "Cargo Features Overview"
33document_id : " features-2025-11-17"
44status : " living"
55created : " 2025-11-17T23:59:00Z"
6- last_updated : " 2026-02-10T00:00:00Z "
7- version : " 0.1.15 "
6+ last_updated : " 2026-02-13T20:47:25Z "
7+ version : " 0.1.16 "
88engine_workspace_version : " 2023.1.30"
99wgpu_version : " 26.0.1"
1010shader_backend_default : " naga"
1111winit_version : " 0.29.10"
12- repo_commit : " fa36b760348f7b4a924220885fa88684bded03f6 "
12+ repo_commit : " c66de56f04d6d3f9866eb8d7e48847f3882aad28 "
1313owners : ["lambda-sh"]
1414reviewers : ["engine", "rendering"]
1515tags : ["guide", "features", "validation", "cargo", "audio", "physics"]
@@ -89,11 +89,11 @@ Audio
8989
9090Physics
9191- ` physics-2d ` (umbrella, disabled by default): enables the 2D physics world
92- APIs (for example, ` lambda::physics::PhysicsWorld2D ` ). This feature enables
93- the platform physics backend via ` lambda-rs- platform/ physics-2d `
94- (currently backed by ` rapier2d =0.32.0 ` ). Expected runtime cost depends on
95- simulation workload; no runtime cost is incurred unless a physics world is
96- constructed and stepped.
92+ APIs (for example, ` lambda::physics::PhysicsWorld2D ` and
93+ ` lambda::physics::RigidBody2D ` ). This feature enables the platform physics
94+ backend via ` lambda-rs-platform/physics-2d ` (currently backed by ` rapier2d ` ).
95+ Expected runtime cost depends on simulation workload; no runtime cost is
96+ incurred unless a physics world is constructed, populated, and stepped.
9797
9898Render validation
9999
@@ -169,10 +169,12 @@ Audio
169169
170170Physics
171171- ` physics-2d ` (umbrella, disabled by default): enables the internal 2D physics
172- backend (currently backed by ` rapier2d =0.32.0 ` ). Applications MUST NOT
173- depend on ` rapier2d ` directly via this crate.
172+ backend (currently backed by ` rapier2d ` ). Applications MUST NOT depend on
173+ ` rapier2d ` directly via this crate.
174174
175175## Changelog
176+ - 0.1.16 (2026-02-13): Document 2D rigid bodies under ` physics-2d ` and update
177+ metadata.
176178- 0.1.15 (2026-02-10): Document ` audio-playback ` in ` lambda-rs ` and update
177179 metadata.
178180- 0.1.14 (2026-02-06): Document 2D physics feature flags in ` lambda-rs ` and
0 commit comments