parse-rust-mongo 0.1.0

MongoDB storage adapter and the Parse/BSON transform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! MongoDB storage adapter and the Parse/BSON transform.
//!
//! `transform` is the part full of load-bearing special cases, and
//! it is also pure, which makes it the one piece of this crate that can be differentially tested
//! against upstream directly rather than through a running server. That is why it landed first.

#![forbid(unsafe_code)]
#![cfg_attr(
    not(test),
    deny(clippy::unwrap_used, clippy::expect_used, clippy::panic)
)]

pub mod adapter;
pub mod transform;

pub use adapter::MongoAdapter;