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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ This repository contains the officially supported MongoDB Rust driver, a client
35
35
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`.
36
36
```toml
37
37
[dependencies]
38
-
mongodb = "0.11.0"
38
+
mongodb = "1.0.0"
39
39
```
40
40
41
41
#### Configuring the async runtime
@@ -44,7 +44,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
44
44
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
45
45
```toml
46
46
[dependencies.mongodb]
47
-
version = "0.11.0"
47
+
version = "1.0.0"
48
48
default-features = false
49
49
features = ["async-std-runtime"]
50
50
```
@@ -53,7 +53,7 @@ features = ["async-std-runtime"]
53
53
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
0 commit comments