diff --git a/Cargo.toml b/Cargo.toml index d7dbc4ff0..49acdcfc3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,6 @@ derivative = "1" hashbrown = "0.5.0" hibitset = { version = "0.6.1", default-features = false } log = "0.4" -mopa = "0.2" shred = { version = "0.9.1", default-features = false } shrev = "1.1.1" tuple_utils = "0.3" diff --git a/src/storage/tests.rs b/src/storage/tests.rs index 5cd22869d..b87158acd 100644 --- a/src/storage/tests.rs +++ b/src/storage/tests.rs @@ -1,4 +1,4 @@ -use mopa::Any; +use std::any::Any; use super::*; use crate::world::{Component, Entity, Generation, Index, WorldExt}; diff --git a/src/world/comp.rs b/src/world/comp.rs index 8cf461cb7..b0726ac66 100644 --- a/src/world/comp.rs +++ b/src/world/comp.rs @@ -1,4 +1,4 @@ -use mopa::Any; +use std::any::Any; use crate::storage::UnprotectedStorage;