pg-embed-setup-unpriv 0.5.2

Initializes postgresql_embedded clusters with platform-appropriate setup
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Cache lookup, population, and validation operations.
//!
//! Provides functions for checking cache status, copying binaries from cache,
//! and populating the cache after downloads.

mod copy;
mod lookup;
mod populate;

pub use copy::copy_from_cache;
pub use lookup::{CacheLookupResult, check_cache, find_matching_cached_version, try_use_cache};
pub use populate::{populate_cache, try_populate_cache};

#[cfg(test)]
mod tests;