Skip to content

Commit bda4c9a

Browse files
authored
Merge pull request #7 from rust-lang-ja/update-2020-09
TRPLの最新版を公開
2 parents d7ed362 + 4be1a43 commit bda4c9a

File tree

3 files changed

+23
-50
lines changed

3 files changed

+23
-50
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018
3+
Copyright (c) 2018 - 2020
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

index.md

Lines changed: 19 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -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 – 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.

sitemap.xml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,23 @@
1010
<priority>1.00</priority>
1111
</url>
1212
<url>
13-
<loc>https://doc.rust-jp.rs/book/second-edition/</loc>
13+
<loc>https://doc.rust-jp.rs/book-ja/</loc>
1414
<changefreq>weekly</changefreq>
1515
<priority>0.80</priority>
1616
</url>
1717
<url>
1818
<loc>https://doc.rust-jp.rs/rust-by-example-ja/</loc>
19-
<changefreq>monthly</changefreq>
19+
<changefreq>weekly</changefreq>
2020
<priority>0.80</priority>
2121
</url>
2222
<url>
2323
<loc>https://doc.rust-jp.rs/edition-guide/</loc>
24-
<changefreq>weekly</changefreq>
24+
<changefreq>monthly</changefreq>
2525
<priority>0.80</priority>
2626
</url>
2727
<url>
2828
<loc>https://doc.rust-jp.rs/rust-nomicon-ja/</loc>
2929
<changefreq>monthly</changefreq>
3030
<priority>0.80</priority>
3131
</url>
32-
<url>
33-
<loc>https://doc.rust-jp.rs/the-rust-programming-language-ja/1.9/book/</loc>
34-
<changefreq>monthly</changefreq>
35-
<priority>0.60</priority>
36-
</url>
37-
<url>
38-
<loc>https://doc.rust-jp.rs/the-rust-programming-language-ja/1.6/book/</loc>
39-
<changefreq>monthly</changefreq>
40-
<priority>0.40</priority>
41-
</url>
4232
</urlset>

0 commit comments

Comments
 (0)