Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/estie-inc/rust-book
https://github.com/estie-inc/rust-book
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/estie-inc/rust-book
- Owner: estie-inc
- Created: 2023-12-08T08:21:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-23T07:26:08.000Z (2 months ago)
- Last Synced: 2024-10-24T18:57:34.559Z (2 months ago)
- Language: Rust
- Size: 378 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 書籍「バックエンドエンジニアを目指す人のための Rust」収録ソースコード
[バックエンドエンジニアを目指す人のための Rust (翔泳社)](https://www.shoeisha.co.jp/book/detail/9784798186016)に収録されているソースコードを公開しています。
学習にお役立ていただければ幸いです。## ソースコードのダウンロード
https://github.com/estie-inc/rust-book/archive/refs/heads/main.zip をダウンロードしてお好きな場所に展開してください。gitが使える場合は、以下のコマンドを実行してダウンロードすることもできます。
```sh
$ git clone https://github.com/estie-inc/rust-book
```## 動かし方
このリポジトリは、Cargoの[ワークスペース](https://doc.rust-jp.rs/book-ja/ch14-03-cargo-workspaces.html)という仕組みを使って、複数のパッケージをまとめて管理しています。それぞれのパッケージを実行するには、`cargo run -p`のあとにパッケージ名を指定して次のように実行してください。
```sh
$ cargo run -p hello_world
Hello, world!Hello, Cargo!
```