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)