Skip to content

Commit

Permalink
use simpler version bound in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus authored Oct 17, 2019
1 parent 2799026 commit b03c098
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,21 @@ By default, `uuid` can be depended on with:

```toml
[dependencies]
uuid = "0.8.0"
uuid = "0.8"
```

To activate various features, use syntax like:

```toml
[dependencies]
uuid = { version = "0.8.0", features = ["serde", "v4"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
```

You can disable default features with:

```toml
[dependencies]
uuid = { version = "0.8.0", default-features = false }
uuid = { version = "0.8", default-features = false }
```

## Examples
Expand Down

0 comments on commit b03c098

Please sign in to comment.