//! evy ECS storage adapter.
//!
//! Bridges Bevy ECS-style typed components to bbg's `ShardStore` trait.
//! All component instances live in one of 13 namespaces (12 BBG dimensions
//! + EPHEMERAL); the backend (`memory`/`unimem`/`ssd`/`hdd`/`network`) is
//! selected per-deployment from `PlatformCapabilities`.
//!
//! See `evy/specs/evy.md` ยง4 for the storage model.
pub use GoldilocksCodec;
pub use EvyComponent;
pub use Namespace;
pub use ParticleId;
pub use ;
// Re-export the field element type so callers don't need a direct nebu dep.
pub use Goldilocks;