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
+4-3
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ This repository contains the officially supported MongoDB Rust driver, a client
29
29
| Driver Version | Required Rust Version |
30
30
|:--------------:|:---------------------:|
31
31
| master | 1.43+ |
32
+
| 1.1.x | 1.43+ |
32
33
| 1.0.x | 1.43+ |
33
34
| 0.11.x | 1.43+ |
34
35
| 0.10.x | 1.43+ |
@@ -39,7 +40,7 @@ This repository contains the officially supported MongoDB Rust driver, a client
39
40
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`.
40
41
```toml
41
42
[dependencies]
42
-
mongodb = "1.0.0"
43
+
mongodb = "1.1.0"
43
44
```
44
45
45
46
#### Configuring the async runtime
@@ -48,7 +49,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
48
49
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
49
50
```toml
50
51
[dependencies.mongodb]
51
-
version = "1.0.0"
52
+
version = "1.1.0"
52
53
default-features = false
53
54
features = ["async-std-runtime"]
54
55
```
@@ -57,7 +58,7 @@ features = ["async-std-runtime"]
57
58
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
0 commit comments