File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ This crate works with Cargo and can be found on
2525
2626``` toml
2727[dependencies ]
28- bson = " 1. 2.0"
28+ bson = " 2.0.0-beta "
2929```
3030
3131## Overview of BSON Format
@@ -48,7 +48,7 @@ hello\x00 // field name
4848```
4949
5050BSON is the primary data representation for [ MongoDB] ( https://www.mongodb.com/ ) , and this crate is used in the
51- [ ` mongodb ` ] ( https://docs.rs/mongodb/0.10.0 /mongodb/ ) driver crate in its API and implementation.
51+ [ ` mongodb ` ] ( https://docs.rs/mongodb/latest /mongodb/ ) driver crate in its API and implementation.
5252
5353For more information about BSON itself, see [ bsonspec.org] ( http://bsonspec.org ) .
5454
Original file line number Diff line number Diff line change 3737//! ```
3838//!
3939//! BSON is the primary data representation for [MongoDB](https://www.mongodb.com/), and this crate is used in the
40- //! [`mongodb`](https://docs.rs/mongodb/0.10.0 /mongodb/) driver crate in its API and implementation.
40+ //! [`mongodb`](https://docs.rs/mongodb/latest /mongodb/) driver crate in its API and implementation.
4141//!
4242//! For more information about BSON itself, see [bsonspec.org](http://bsonspec.org).
4343//!
183183//! that is also less error prone.
184184
185185#![ allow( clippy:: cognitive_complexity) ]
186- #![ doc( html_root_url = "https://docs.rs/bson/1.2.2 " ) ]
186+ #![ doc( html_root_url = "https://docs.rs/bson/2.0.0-beta " ) ]
187187
188188pub use self :: {
189189 bson:: {
You can’t perform that action at this time.
0 commit comments