bson 3.1.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 std::sync::LazyLock;

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