From 88dc2356392166efad76775c878094f4e83ff746 Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Wed, 4 Nov 2020 11:05:01 +0800 Subject: [PATCH] Mention the default for toolchain and profile --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index daf0062..d379697 100644 --- a/README.md +++ b/README.md @@ -58,11 +58,11 @@ See [additional recipes here](https://github.com/actions-rs/meta). | Name | Required | Description | Type | Default | | ------------ | :------: | ----------------------------------------------------------------------------------------------------------------------------------------------------| ------ | --------| -| `toolchain` | | [Toolchain](https://github.com/rust-lang/rustup.rs#toolchain-specification) name to use, ex. `stable`, `nightly`, `nightly-2019-04-20`, or `1.32.0` | string | | +| `toolchain` | | [Toolchain](https://github.com/rust-lang/rustup.rs#toolchain-specification) name to use, ex. `stable`, `nightly`, `nightly-2019-04-20`, or `1.32.0` | string | stable | | `target` | | Additionally install specified target for this toolchain, ex. `x86_64-apple-darwin` | string | | | `default` | | Set installed toolchain as a default toolchain | bool | false | | `override` | | Set installed toolchain as an override for the current directory | bool | false | -| `profile` | | Execute `rustup set profile {value}` before installing the toolchain, ex. `minimal` | string | | +| `profile` | | Execute `rustup set profile {value}` before installing the toolchain, ex. `minimal` | string | default | | `components` | | Comma-separated list of the additional components to install, ex. `clippy, rustfmt` | string | | Note: since `v1.0.4` version, `toolchain` input is not marked as required