diff --git a/Makefile.toml b/Makefile.toml index 63a507a..d8fcaec 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -4,36 +4,36 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = "true" # ---- BUILD & CREATE WASMS ---- [tasks.build] -description = "Build only Seed without examples" +description = "Build" workspace = false command = "cargo" args = ["build"] [tasks.build_release] -description = "Build only Seed without examples" +description = "Build, with the --release flag" workspace = false command = "cargo" args = ["build", "--release"] [tasks.create_wasms] -description = "Build examples with wasm-pack" +description = "Build with wasm-pack" workspace = false command = "cargo" args = ["make", "create_wasm"] [tasks.all] -description = "Build all - Seed + examples and create wasms" +description = "Build, and create wasms" workspace = false dependencies = ["build", "create_wasms"] [tasks.all_release] -description = "Build all - Seed + examples and create wasms, with the --release flag" +description = "Build, and create wasms, with the --release flag" workspace = false dependencies = ["build_release", "create_wasms"] [tasks.serve] -description = "Start server for given example" +description = "Start server" install_crate = { crate_name = "https", binary = "http", test_arg = "--help" } workspace = false command = "http" diff --git a/README.md b/README.md index 79ad265..c4b0f41 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,7 @@ # Seed Quickstart **To get started:** -- Clone this repo - - +- Clone this repo: `git clone https://github.com/david-oconnor/seed-quickstart.git` - If you don't have Rust and cargo-make installed, [Download it](https://www.rust-lang.org/tools/install), and run the following commands: