Provides a custom inmemory database on top of entity
that leverages a mixture
of std::collections::HashMap
to maintain the entities.
```rust use entity_inmemory::InmemoryDatabase;
let db = InmemoryDatabase::default(); ```
Entity provides a few feature flags:
serde-1
- Provides serde serialization module and associated
functionality for the database. Ents are supported through the use of
typetag. This will require that all
ents implement Serialize
and Deserialize.
serde-1
be enabled on entity
crateserde
and typetag
to be included in dependencies