# pbbson-rs
Utilities for [pbjson](https://crates.io/crates/pbjson-types) to [BSON](https://crates.io/crates/bson) conversion.
[](LICENSE)
[]()
## Installing
```shell
$ cargo add pbbson
```
## Testing
```shell
$ make check
```
## Using
### Convert a Prost Protobuf message into a BSON Document
```rust
use pbbson;
let doc = pbbson::pb_to_bson(&message).unwrap();
```