Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions books/command-line-rust/index.md
Original file line number Diff line number Diff line change
@@ -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)