From 470d1a7567f240e93fb94a82eec362ea663ab623 Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Thu, 19 Jan 2023 21:27:34 +0100 Subject: [PATCH] switch to `shipyard` --- Cargo.toml | 5 +---- src/main.rs | 4 +++- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0905424..13d6df1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,4 @@ glam = { version = "0.22", features = ["debug-glam-assert", "mint", "fast-math"] hashbrown = "0.13" noise = "0.8" rayon = "1.6" -specs = { version = "0.18", features = ["specs-derive"] } - -[features] -default = [] +shipyard = { version = "0.6", features = ["thread_local"] } diff --git a/src/main.rs b/src/main.rs index 58dfaaa..d58a2bd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +use shipyard::World; + fn main() { - + let world = World::new(); }