Skip to content

Commit

Permalink
Update README instructions for installing cargo dependencies (#9)
Browse files Browse the repository at this point in the history
Co-authored-by: Drew Taylor <[email protected]>
  • Loading branch information
aelesbao and drewstaylor authored Mar 2, 2022
1 parent f87cfcd commit a4ab128
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ Assuming you have a recent version of rust and cargo (v1.51.0+) installed (via [
then the following should get you a new repo to start a contract:

Install [cargo-generate](https://github.com/ashleygwilliams/cargo-generate) and cargo-run-script.
Unless you did that before, run this line now:
If you didn't install them already, run the following commands:

```sh
cargo install cargo-generate cargo-run-script --features vendored-openssl
cargo install cargo-generate --features vendored-openssl
cargo install cargo-run-script
```

Now, use it to create your new contract.
Expand Down
5 changes: 3 additions & 2 deletions cw20/base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ Assuming you have a recent version of rust and cargo (v1.51.0+) installed
then the following should get you a new repo to start a contract:

Install [cargo-generate](https://github.com/ashleygwilliams/cargo-generate) and cargo-run-script.
Unless you did that before, run this line now:
If you didn't install them already, run the following commands:

```sh
cargo install cargo-generate cargo-run-script --features vendored-openssl
cargo install cargo-generate --features vendored-openssl
cargo install cargo-run-script
```

Now, use it to create your new contract.
Expand Down
5 changes: 3 additions & 2 deletions cw721/off-chain-metadata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ Assuming you have a recent version of rust and cargo (v1.51.0+) installed
then the following should get you a new repo to start a contract:

Install [cargo-generate](https://github.com/ashleygwilliams/cargo-generate) and cargo-run-script.
Unless you did that before, run this line now:
If you didn't install them already, run the following commands:

```sh
cargo install cargo-generate cargo-run-script --features vendored-openssl
cargo install cargo-generate --features vendored-openssl
cargo install cargo-run-script
```

Now, use it to create your new contract.
Expand Down
5 changes: 3 additions & 2 deletions cw721/on-chain-metadata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ Assuming you have a recent version of rust and cargo (v1.51.0+) installed
then the following should get you a new repo to start a contract:

Install [cargo-generate](https://github.com/ashleygwilliams/cargo-generate) and cargo-run-script.
Unless you did that before, run this line now:
If you didn't install them already, run the following commands:

```sh
cargo install cargo-generate cargo-run-script --features vendored-openssl
cargo install cargo-generate --features vendored-openssl
cargo install cargo-run-script
```

Now, use it to create your new contract.
Expand Down
5 changes: 3 additions & 2 deletions default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ Assuming you have a recent version of rust and cargo (v1.51.0+) installed
then the following should get you a new repo to start a contract:

Install [cargo-generate](https://github.com/ashleygwilliams/cargo-generate) and cargo-run-script.
Unless you did that before, run this line now:
If you didn't install them already, run the following commands:

```sh
cargo install cargo-generate cargo-run-script --features vendored-openssl
cargo install cargo-generate --features vendored-openssl
cargo install cargo-run-script
```

Now, use it to create your new contract.
Expand Down
5 changes: 3 additions & 2 deletions increment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ Assuming you have a recent version of rust and cargo (v1.51.0+) installed
then the following should get you a new repo to start a contract:

Install [cargo-generate](https://github.com/ashleygwilliams/cargo-generate) and cargo-run-script.
Unless you did that before, run this line now:
If you didn't install them already, run the following commands:

```sh
cargo install cargo-generate cargo-run-script --features vendored-openssl
cargo install cargo-generate --features vendored-openssl
cargo install cargo-run-script
```

Now, use it to create your new contract.
Expand Down

0 comments on commit a4ab128

Please sign in to comment.