Skip to content

Commit

Permalink
docs: simplify dependency specification
Browse files Browse the repository at this point in the history
  • Loading branch information
DataWraith committed Nov 20, 2021
1 parent 4b7f1b1 commit 86e27bd
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,15 @@ Add BBT to your Cargo.toml:

```toml
[dependencies]
bbt = "0.2.0"
bbt = "0.2"
```

If you want to serialize Ratings with [Serde](https://serde.rs/), you will need
to add the following to your Cargo.toml instead:

```toml
[dependencies.bbt]
version = "0.2.0"
features = ["serde"]
[dependencies]
bbt = { version = "0.2", features = ["serde"] }
```

See the [Documentation](https://docs.rs/bbt/) for information on how to use the
Expand Down

0 comments on commit 86e27bd

Please sign in to comment.