bevy_persistence_database 0.2.3

A persistence and database integration solution for the Bevy game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "arango")]
mod arango_connection;
pub mod connection;
#[cfg(feature = "postgres")]
mod postgres_connection;
mod shared;

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

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

pub use connection::MockDatabaseConnection;