1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

「実践Rustプログラミング入門」に入門する(2日目)

Last updated at Posted at 2020-09-01

pp.144 - 150

p.148 サードパーティ製クレートclapを使用する場合

本記事作成時点でも3系はclap@3.0.0-beta-1。2.x系は、2.33.3のドキュメントが見つかった。
なので、cargo add clap@3.0.0-beta.1でclapをcargoに追加できる。
実行すると、Cargo.tomlに以下が追加される。

Cargo.toml
[dependencies]
clap = "3.0.0-beta.1"

VSCodeでのコードフォーマットのショートカットはAlt+Shift+F
引数を指定して実験する。
20200901_Qiita.png

1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?