bevy_persistence_database 0.2.2

A persistence and database integration solution for the Bevy game engine
Documentation
pub mod connection;
mod shared;
#[cfg(feature = "arango")]
mod arango_connection;
#[cfg(feature = "postgres")]
mod postgres_connection;

pub use connection::{
	DatabaseConnection,
	PersistenceError,
	TransactionOperation,
	DocumentKind,
	BEVY_PERSISTENCE_VERSION_FIELD,
	BEVY_TYPE_FIELD,
};

#[cfg(feature = "arango")]
pub use arango_connection::ArangoDbConnection;
#[cfg(feature = "postgres")]
pub use postgres_connection::PostgresDbConnection;

pub use connection::MockDatabaseConnection;