summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-02-12 18:01:48 +0100
committerliv <mokou@fastmail.com>2023-02-12 18:01:48 +0100
commitfc9fb536ca8e2fd0121e0f52719bc838506f68fa (patch)
tree190b1e5aad55e62f2315ede0e2226e4b265752ed /README.md
parent4c7e56174031c606c4b40b13a0fe0f3d11e3bf4f (diff)
release: 5.4.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index 956bb6d..4056ba8 100644
--- a/README.md
+++ b/README.md
@@ -29,11 +29,12 @@ curl -L https://raw.githubusercontent.com/rust-lang/rustlings/main/install.sh |
This will install Rustlings and give you access to the `rustlings` command. Run it to get started!
### Nix
+
Basically: Clone the repository at the latest tag, finally run `nix develop` or `nix-shell`.
```bash
-# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.3.0)
-git clone -b 5.3.0 --depth 1 https://github.com/rust-lang/rustlings
+# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.0)
+git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
cd rustlings
# if nix version > 2.3
nix develop
@@ -70,8 +71,8 @@ If you get a permission denied message, you might have to exclude the directory
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
```bash
-# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.3.0)
-git clone -b 5.3.0 --depth 1 https://github.com/rust-lang/rustlings
+# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 5.4.0)
+git clone -b 5.4.0 --depth 1 https://github.com/rust-lang/rustlings
cd rustlings
cargo install --force --path .
```