postgresfixture 0.5.0

Easily create and manage PostgreSQL clusters on demand for testing and development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Basic prelude for `postgresfixture`.

pub use crate::{
    cluster::{self, Cluster, ClusterError},
    coordinate, lock,
    runtime::{
        strategy::{self, RuntimeStrategy},
        Runtime, RuntimeError,
    },
    version::{PartialVersion, Version, VersionError},
};