File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ authors = [
44 " Patrick Freed <patrick.freed@mongodb.com>" ,
55 " Isabel Atkinson <isabel.atkinson@mongodb.com>" ,
66 " Abraham Egnor <abraham.egnor@mongodb.com>" ,
7+ " Kaitlin Mahar <kaitlin.mahar@mongodb.com>" ,
78]
89description = " The official MongoDB driver for Rust"
910edition = " 2018"
@@ -14,7 +15,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/"
1415license = " Apache-2.0"
1516readme = " README.md"
1617name = " mongodb"
17- version = " 2.3.0"
18+ version = " 2.3.0-beta "
1819
1920exclude = [
2021 " etc/**" ,
@@ -54,7 +55,7 @@ snappy-compression = ["snap"]
5455async-trait = " 0.1.42"
5556base64 = " 0.13.0"
5657bitflags = " 1.1.0"
57- bson = { git = " https://github.com/mongodb/bson-rust " , branch = " main " }
58+ bson = " 2.3.0 "
5859chrono = " 0.4.7"
5960derivative = " 2.1.1"
6061flate2 = { version = " 1.0" , optional = true }
Original file line number Diff line number Diff line change 1616//! your application, simply add it to your project's `Cargo.toml`.
1717//! ```toml
1818//! [dependencies]
19- //! mongodb = "2.2.0 "
19+ //! mongodb = "2.3.0-beta "
2020//! ```
2121//!
2222//! ### Configuring the async runtime
3030//! add the following to your `Cargo.toml`:
3131//! ```toml
3232//! [dependencies.mongodb]
33- //! version = "2.2.0 "
33+ //! version = "2.3.0-beta "
3434//! default-features = false
3535//! features = ["async-std-runtime"]
3636//! ```
4040//! feature to your `Cargo.toml`:
4141//! ```toml
4242//! [dependencies.mongodb]
43- //! version = "2.2.0 "
43+ //! version = "2.3.0-beta "
4444//! features = ["tokio-sync"]
4545//! ```
4646//! Using the `"sync"` feature also requires using `default-features = false`.
301301) ]
302302#![ cfg_attr( docsrs, feature( doc_cfg) ) ]
303303#![ 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 " ) ]
305305
306306#[ cfg( all( feature = "aws-auth" , feature = "async-std-runtime" ) ) ]
307307compile_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