Skip to content

Commit

Permalink
minor: increment version number in README
Browse files Browse the repository at this point in the history
  • Loading branch information
saghm committed Aug 19, 2020
1 parent 604d27e commit 751321b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ This repository contains the officially supported MongoDB Rust driver, a client
| Driver Version | Required Rust Version |
|:--------------:|:---------------------:|
| master | 1.43+ |
| 1.1.x | 1.43+ |
| 1.0.x | 1.43+ |
| 0.11.x | 1.43+ |
| 0.10.x | 1.43+ |
Expand All @@ -39,7 +40,7 @@ This repository contains the officially supported MongoDB Rust driver, a client
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`.
```toml
[dependencies]
mongodb = "1.0.0"
mongodb = "1.1.0"
```

#### Configuring the async runtime
Expand All @@ -48,7 +49,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
```toml
[dependencies.mongodb]
version = "1.0.0"
version = "1.1.0"
default-features = false
features = ["async-std-runtime"]
```
Expand All @@ -57,7 +58,7 @@ features = ["async-std-runtime"]
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
```toml
[dependencies.mongodb]
version = "1.0.0"
version = "1.1.0"
default-features = false
features = ["sync"]
```
Expand Down

0 comments on commit 751321b

Please sign in to comment.