parse_rust_mongo/lib.rs
1//! MongoDB storage adapter and the Parse/BSON transform.
2//!
3//! `transform` is the part full of load-bearing special cases, and
4//! it is also pure, which makes it the one piece of this crate that can be differentially tested
5//! against upstream directly rather than through a running server. That is why it landed first.
6
7#![forbid(unsafe_code)]
8#![cfg_attr(
9 not(test),
10 deny(clippy::unwrap_used, clippy::expect_used, clippy::panic)
11)]
12
13pub mod adapter;
14pub mod transform;
15
16pub use adapter::MongoAdapter;