azums 1.0.1

Embedded durable execution runtime for Rust, from Memory and SQLite to PostgreSQL and Redis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "postgres")]
/// PostgreSQL storage adapter.
pub mod postgres;
#[cfg(feature = "sqlite")]
/// SQLite storage adapter.
pub mod sqlite;

#[cfg(feature = "redis")]
pub use azums_redis::RedisBackend;
#[cfg(feature = "postgres")]
pub use postgres::PostgresBackend;
#[cfg(feature = "sqlite")]
pub use sqlite::{make_sqlite_pool, SqliteBackend};

pub use azums_core::StorageBackend;