@@ -3,23 +3,18 @@ title: "Home"
33---
44
55このサイトでは[ Rust] [ rust-lang ] の日本語ドキュメントを公開しています。
6- Rustは速度 、安全性、平行性の3つのゴールにフォーカスしたシステムプログラミング言語です 。
6+ Rustはパフォーマンス 、安全性、生産性に優れるプログラミング言語です 。
77
88## Rustの入門書
99
10- - [ ** プログラミング言語 Rust, 2nd Edition/ The Rust Programming Language, Second Edition** ] [ trpl2 ]
11- * Rustプロジェクト公式の入門書を和訳したものです。通称「TRPL」または「the book」
12- * Rust 2018 Editionには** 非対応** です。2018年6月ごろの英語版をベースしています
13- * じっくり読みたい人向けに[ PDF版] [ trpl2-pdf ] もあります
14-
15- - ** プログラミング言語 Rust, 1st Edition / The Rust Programming Language, First Edition**
16- * [ Rust 1.9版] [ trpl1-1.9 ] , [ Rust 1.6版] [ trpl1-1.6 ]
17- * 公式の入門書の古いバージョン(2016年版)です
18- * Rust 2018 Editionには** 非対応** です
10+ - [ ** プログラミング言語Rust日本語版** ] [ trpl ]
11+ * Rustプロジェクト公式の入門書「The Rust Programming Language」を和訳したものです。通称「TRPL」または「the book」
12+ * Rust 2018 Editionに** 対応** しています。最新の英語版をベースにしていますが、一部、古いところも残っています
13+ * じっくり読みたい人向けに[ PDF版] [ trpl-pdf ] もあります
1914
2015- [ ** Rust by Example日本語版** ] [ rbe ]
2116 * 動作するサンプルコードを中心に学べる入門書です
22- * Rust 2018 Edition ** 対応** です 。2020年ごろの英語版をベースにしていますが、一部未翻訳です
17+ * Rust 2018 Editionに ** 対応** しています 。2020年ごろの英語版をベースにしていますが、一部未翻訳です
2318
2419
2520## 各種リファレンス、ガイド
@@ -30,23 +25,24 @@ Rustは速度、安全性、平行性の3つのゴールにフォーカスした
3025- [ ** Rust APIガイドライン** ] [ api-guidelines ]
3126 * Rustライブラリの設計者向けに、APIのデザイン上の推奨事項がまとめられています
3227
33- - [ ** エディションガイド / The Edition Guide ** ] [ edition-guide ]
28+ - [ ** エディションガイド日本語版 ** ] [ edition-guide ]
3429 * Rustのエディション毎の新機能リストです
35- * 翻訳中
30+ * 翻訳者募集中
3631
3732
3833## Rustをさらに深く学びたい
3934
40- - [ ** Rust裏本 / The Rustnomicon** ] [ nomicon ]
35+ - [ ** Rust裏本** ] [ nomicon ]
36+ * 「The Rustnomicon」を和訳したものです
4137 * アンセーフなRustコードを書くにあたって必要な知識がまとめられています
42- * 全体の三割ほど翻訳済み。翻訳者募集中
4338
4439
4540## 目的別に学びたい
4641
4742### 組込みプログラミング
4843
49- - [ ** 組込みRust / The Embedded Rust Book** ] [ embedded-book ]
44+ - [ ** 組込みRust** ] [ embedded-book ]
45+ * 「The Embedded Rust Book」を和訳したものです
5046 * ベアメタル (マイクロコントローラ) デバイスのファームウェアをRustで開発するためのガイドブック
5147
5248- [ ** Discovery** ] [ embedded-discovery ]
@@ -59,11 +55,9 @@ Rustは速度、安全性、平行性の3つのゴールにフォーカスした
5955ここに掲載されている日本語ドキュメントはいずれも[ 英語版の公式ドキュメント] ( https://doc.rust-lang.org/ ) を和訳したものです。
6056有志によって翻訳・維持されています。
6157
62- [ rust-lang ] : https://www.rust-lang.org/ja-JP/
63- [ trpl2 ] : https://doc.rust-jp.rs/book/second-edition/
64- [ trpl2-pdf ] : https://doc.rust-jp.rs/book-ja-pdf/book.pdf
65- [ trpl1-1.9 ] : https://doc.rust-jp.rs/the-rust-programming-language-ja/1.9/book/
66- [ trpl1-1.6 ] : https://doc.rust-jp.rs/the-rust-programming-language-ja/1.6/book/
58+ [ rust-lang ] : https://www.rust-lang.org/ja/
59+ [ trpl ] : https://doc.rust-jp.rs/book-ja/
60+ [ trpl-pdf ] : https://doc.rust-jp.rs/book-ja-pdf/book.pdf
6761[ rbe ] : https://doc.rust-jp.rs/rust-by-example-ja/
6862[ std-vec ] : https://moshg.github.io/rust-lib-doc-ja/std/vec/
6963[ api-guidelines ] : https://sinkuu.github.io/api-guidelines/
@@ -88,9 +82,8 @@ Rustは速度、安全性、平行性の3つのゴールにフォーカスした
8882
8983| 文書 | GitHubリポジトリ |
9084| :--- | :--- |
91- | プログラミング言語 Rust, 2nd Edition | [ rust-lang-ja/book-ja] [ gh-trpl2 ] |
92- | 同 PDF版 | [ rust-lang-ja/book-ja-pdf] [ gh-trpl2-pdf ] |
93- | プログラミング言語 Rust, 1st Edition | [ rust-lang-ja/the-rust-programming-language-ja] [ gh-trpl1 ] |
85+ | プログラミング言語 Rust | [ rust-lang-ja/book-ja] [ gh-trpl ] |
86+ | 同 PDF版 | [ rust-lang-ja/book-ja-pdf] [ gh-trpl-pdf ] |
9487| Rust by Example日本語版 | [ rust-lang-ja/rust-by-example-ja] [ gh-rbe ] |
9588| 標準ライブラリリファレンス | [ moshg/rust-lib-ja] [ gh-std ] |
9689| Rust APIガイドライン | [ sinkuu/api-guidelines] [ gh-api-guidelines ] |
@@ -100,9 +93,8 @@ Rustは速度、安全性、平行性の3つのゴールにフォーカスした
10093| Discovery | [ tomoyuki-nakabayashi/discovery] [ gh-embedded-discovery ] |
10194| その他(doc.rust-jp.rs全般) | [ rust-lang-ja/rust-lang-ja.github.io] [ gh-org ] |
10295
103- [ gh-trpl2 ] : https://github.com/rust-lang-ja/book-ja
104- [ gh-trpl2-pdf ] : https://github.com/rust-lang-ja/book-ja-pdf
105- [ gh-trpl1 ] : https://github.com/rust-lang-ja/the-rust-programming-language-ja
96+ [ gh-trpl ] : https://github.com/rust-lang-ja/book-ja
97+ [ gh-trpl-pdf ] : https://github.com/rust-lang-ja/book-ja-pdf
10698[ gh-rbe ] : https://github.com/rust-lang-ja/rust-by-example-ja
10799[ gh-std ] : https://github.com/moshg/rust-lib-ja
108100[ gh-api-guidelines ] : https://github.com/sinkuu/api-guidelines
@@ -111,12 +103,3 @@ Rustは速度、安全性、平行性の3つのゴールにフォーカスした
111103[ gh-embedded-book ] : https://github.com/tomoyuki-nakabayashi/book
112104[ gh-embedded-discovery ] : https://github.com/tomoyuki-nakabayashi/discovery
113105[ gh-org ] : https://github.com/rust-lang-ja/rust-lang-ja.github.io
114-
115-
116- * * *
117-
118- Copyright © ; 2018 &ndash ; 2019 The Rust Document Writers and Translators. Licensed under
119- the [ Apache License, Version 2.0] ( http://www.apache.org/licenses/LICENSE-2.0 ) or
120- the [ MIT license] ( https://opensource.org/licenses/MIT ) , at your option.
121-
122- This file may not be copied, modified, or distributed except according to those terms.
0 commit comments