pbbson 0.1.0

Utilities for pbjson to BSON conversion
# pbbson-rs

Utilities for [pbjson](https://crates.io/crates/pbjson-types) to [BSON](https://crates.io/crates/bson) conversion.

[![License](http://img.shields.io/badge/Licence-MIT-blue.svg)](LICENSE)
[![Arch](https://img.shields.io/badge/Arch-aarch64%20|%20amd64%20|%20armv7-blue.svg)]()

## 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();
```