From 9874e5d15a7a1915815f08b3b8ad9a90001080ed Mon Sep 17 00:00:00 2001 From: Forest0923 Date: Tue, 26 Mar 2024 21:09:27 +0900 Subject: [PATCH] =?UTF-8?q?books:=20=E3=80=8CRust=20=E3=81=AE=E7=B7=B4?= =?UTF-8?q?=E7=BF=92=E5=B8=B3=E3=80=8D=E3=82=92=E8=AA=AD=E3=82=93=E3=81=A0?= =?UTF-8?q?=E3=83=A1=E3=83=A2=20(WIP)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- books/command-line-rust/index.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 books/command-line-rust/index.md diff --git a/books/command-line-rust/index.md b/books/command-line-rust/index.md new file mode 100644 index 000000000..2c5c8aa54 --- /dev/null +++ b/books/command-line-rust/index.md @@ -0,0 +1,30 @@ +--- +title: 「Rust の練習帳 ― コマンドラインツールの作成を通してRustを学ぶ」を読んだメモ +date: 2024-03-21 +--- + +## coreutils + +- [coreutils](https://github.com/coreutils/coreutils) +- [uutils/coreutils](https://github.com/uutils/coreutils) + - Reimplementation of GNU coreutils in Rust + +## Docs + +- https://doc.rust-lang.org/stable/std/index.html +- https://docs.rs + +## bat + +- [sharkdp/bat github](https://github.com/sharkdp/bat) + - [clap_app.rs](https://github.com/sharkdp/bat/blob/4790def1ef69134e825177b684ce903a111e7df8/src/bin/bat/clap_app.rs#L2) + +## debug + +- [Suppress dbg! in release build](https://github.com/rust-lang/rust/issues/58383) +- [log crate](https://docs.rs/log/latest/log/index.html) + +## 今度やる + +- [rust-embedded/book](https://github.com/rust-embedded/book) +- [rust raspberrypi OS tutorials](https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials)