f6c0851d4f
- README stays the source of truth for current state; drive/item-5 now reflects the settled decision: String IDs for the MVP, slotmap deferred. - ROADMAP gains a 'point de depart' (present-state) block, marks glam done, removes the slotmap Phase-1 mandates, and documents the String-ID decision plus the deferred 'typed handles' step. - PLAN corrects stale [X] checkmarks (App render() cannot draw, Scene rendering not automated, simple example does not compile) and notes its verification checklist against current reality. - Remove the unused slotmap direct dependency from wsg-lib (package remains in Cargo.lock only as a transitive dep of glow).
18 lines
390 B
TOML
18 lines
390 B
TOML
[package]
|
|
name = "wsg-lib"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
wgpu = "30.0.0" # Vérifiez la version la plus récente
|
|
winit = "0.29" # For window management — pinned to match examples
|
|
thiserror = "2"
|
|
bytemuck = { version = "1.25.0", features = ["derive"] }
|
|
glam = "0.33"
|
|
|
|
[dev-dependencies]
|
|
pollster = { version="0.4.0", features = ["macro"] }
|