restrepo 0.5.12

A collection of components for building restful webservices with actix-web
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Provides access to persistent data repositories. For the time being, the only supported relational database is postgres.
mod error;
mod mappings;
mod query_format;

#[doc(inline)]
pub use error::*;
#[doc(inline)]
pub use mappings::*;
#[doc(inline)]
pub use query_format::{QueryFormat, QueryFormatExt};
pub use restrepo_macros::QueryFormat;