You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ The driver tests against Linux, MacOS, and Windows in CI.
18
18
The driver is available on [crates.io](https://crates.io/crates/mongodb). To use the driver in your application, simply add it to your project's `Cargo.toml`.
19
19
```toml
20
20
[dependencies]
21
-
mongodb = "3.1.0"
21
+
mongodb = "3.2.0"
22
22
```
23
23
24
24
Version 1 of this crate has reached end of life and will no longer be receiving any updates or bug fixes, so all users are recommended to always depend on the latest 2.x release. See the [2.0.0 release notes](https://github.com/mongodb/mongo-rust-driver/releases/tag/v2.0.0) for migration information if upgrading from a 1.x version.
@@ -27,7 +27,7 @@ Version 1 of this crate has reached end of life and will no longer be receiving
27
27
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
28
28
```toml
29
29
[dependencies.mongodb]
30
-
version = "3.1.0"
30
+
version = "3.2.0"
31
31
features = ["sync"]
32
32
```
33
33
**Note:** The sync-specific types can be imported from `mongodb::sync` (e.g. `mongodb::sync::Client`).
0 commit comments