bson 3.0.0

Encoding and decoding support for BSON in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod binary_subtype;
mod datetime;
mod modules;
#[cfg(feature = "serde")]
mod serde;
#[cfg(feature = "serde")]
mod serde_helpers;
#[cfg(feature = "serde")]
mod spec;

use modules::TestLock;
use once_cell::sync::Lazy;

pub(crate) static LOCK: Lazy<TestLock> = Lazy::new(TestLock::new);