Skip to content

Commit

Permalink
README: update install instructions (#100)
Browse files Browse the repository at this point in the history
* README: update install instructions

`cargo add` is now integrated in cargo. So there's no need to install `cargo-edit`.

* Update README.md
  • Loading branch information
MarcoIeni committed Sep 18, 2022
1 parent ff48060 commit 42b85a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ It provides mocking of HTTP responses using request matching and response templa

## How to install

Add `wiremock` to your development dependencies:
Add `wiremock` to your development dependencies by editing the `Cargo.toml` file:
```toml
[dev-dependencies]
# ...
wiremock = "0.5"
```
If you are using [`cargo-edit`](https://github.com/killercup/cargo-edit), run
Or by running:
```bash
cargo add wiremock --dev
```
Expand Down

0 comments on commit 42b85a2

Please sign in to comment.