From 6989cab11cd056ed1e52d7cbb0561c4e91fb57ea Mon Sep 17 00:00:00 2001 From: myrfy001 Date: Sat, 23 Apr 2022 12:00:27 +0800 Subject: [PATCH] Add note for rust proj-1 about clap 3.x --- courses/rust/projects/project-1/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/courses/rust/projects/project-1/README.md b/courses/rust/projects/project-1/README.md index 81f05946e..ab61e91b3 100644 --- a/courses/rust/projects/project-1/README.md +++ b/courses/rust/projects/project-1/README.md @@ -1,5 +1,7 @@ # PNA Rust Project 1: The Rust toolbox +> Note: The following guide is based on `clap 2.x`, and now `clap 3.x` is released. You can read the changelog of clap to find the difference between 2.x and 3.x, and after knowing the difference, you can choose to skip some of the steps in this guide. + **Task**: Create an in-memory key/value store that passes simple tests and responds to command-line arguments.