File tree 2 files changed +4
-4
lines changed
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
25
25
26
26
``` toml
27
27
[dependencies ]
28
- bson = " 1. 2.0"
28
+ bson = " 2.0.0-beta "
29
29
```
30
30
31
31
## Overview of BSON Format
@@ -48,7 +48,7 @@ hello\x00 // field name
48
48
```
49
49
50
50
BSON 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.
52
52
53
53
For more information about BSON itself, see [ bsonspec.org] ( http://bsonspec.org ) .
54
54
Original file line number Diff line number Diff line change 37
37
//! ```
38
38
//!
39
39
//! 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.
41
41
//!
42
42
//! For more information about BSON itself, see [bsonspec.org](http://bsonspec.org).
43
43
//!
183
183
//! that is also less error prone.
184
184
185
185
#![ 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 " ) ]
187
187
188
188
pub use self :: {
189
189
bson:: {
You can’t perform that action at this time.
0 commit comments