File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ authors = [
4
4
" Patrick Freed <[email protected] >" ,
5
5
" Isabel Atkinson <[email protected] >" ,
6
6
" Abraham Egnor <[email protected] >" ,
7
+ " Kaitlin Mahar <[email protected] >" ,
7
8
]
8
9
description = " The official MongoDB driver for Rust"
9
10
edition = " 2018"
@@ -14,7 +15,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/"
14
15
license = " Apache-2.0"
15
16
readme = " README.md"
16
17
name = " mongodb"
17
- version = " 2.3.0"
18
+ version = " 2.3.0-beta "
18
19
19
20
exclude = [
20
21
" etc/**" ,
@@ -54,7 +55,7 @@ snappy-compression = ["snap"]
54
55
async-trait = " 0.1.42"
55
56
base64 = " 0.13.0"
56
57
bitflags = " 1.1.0"
57
- bson = { git = " https://github.com/mongodb/bson-rust " , branch = " main " }
58
+ bson = " 2.3.0 "
58
59
chrono = " 0.4.7"
59
60
derivative = " 2.1.1"
60
61
flate2 = { version = " 1.0" , optional = true }
Original file line number Diff line number Diff line change 16
16
//! your application, simply add it to your project's `Cargo.toml`.
17
17
//! ```toml
18
18
//! [dependencies]
19
- //! mongodb = "2.2.0 "
19
+ //! mongodb = "2.3.0-beta "
20
20
//! ```
21
21
//!
22
22
//! ### Configuring the async runtime
30
30
//! add the following to your `Cargo.toml`:
31
31
//! ```toml
32
32
//! [dependencies.mongodb]
33
- //! version = "2.2.0 "
33
+ //! version = "2.3.0-beta "
34
34
//! default-features = false
35
35
//! features = ["async-std-runtime"]
36
36
//! ```
40
40
//! feature to your `Cargo.toml`:
41
41
//! ```toml
42
42
//! [dependencies.mongodb]
43
- //! version = "2.2.0 "
43
+ //! version = "2.3.0-beta "
44
44
//! features = ["tokio-sync"]
45
45
//! ```
46
46
//! Using the `"sync"` feature also requires using `default-features = false`.
301
301
) ]
302
302
#![ cfg_attr( docsrs, feature( doc_cfg) ) ]
303
303
#![ cfg_attr( test, type_length_limit = "80000000" ) ]
304
- #![ doc( html_root_url = "https://docs.rs/mongodb/2.2.0 " ) ]
304
+ #![ doc( html_root_url = "https://docs.rs/mongodb/2.3.0-beta " ) ]
305
305
306
306
#[ cfg( all( feature = "aws-auth" , feature = "async-std-runtime" ) ) ]
307
307
compile_error ! ( "The `aws-auth` feature flag is only supported on the tokio runtime." ) ;
You can’t perform that action at this time.
0 commit comments