-
Notifications
You must be signed in to change notification settings - Fork 4
/
bookshelf.toml
62 lines (49 loc) · 1.92 KB
/
bookshelf.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
title = "The Rust Language & Ecosystem"
destination-dir = "src"
templates-dir = "templates"
working-dir = "repos"
[[book]]
repo-url = "https://github.com/rust-lang/book.git"
url = "https://doc.rust-lang.org/stable/book/index.html"
[[book]]
repo-url = "https://github.com/rust-lang/rust-by-example.git"
url = "https://doc.rust-lang.org/stable/rust-by-example/"
[[book]]
repo-url = "https://github.com/rust-lang-nursery/rust-cookbook.git"
url = "https://github.com/rust-lang-nursery/rust-cookbook"
#[[book]]
#repo-url = "https://github.com/rust-lang-nursery/edition-guide.git"
#url = "https://doc.rust-lang.org/nightly/edition-guide/"
[[book]]
repo-url = "https://github.com/rust-lang/rustc-guide.git"
url = "https://doc.rust-lang.org/stable/rustc/index.html"
[[book]]
repo-url = "https://github.com/rust-lang/cargo.git"
url = "https://doc.rust-lang.org/stable/cargo/index.html"
folder = "src/doc/"
[[book]]
title = "The Rustdoc Book"
repo-url = "https://github.com/rust-lang/rust.git"
url = "https://doc.rust-lang.org/stable/rustdoc/index.html"
folder = "src/doc/rustdoc/"
[[book]]
repo-url = "https://github.com/rust-lang-nursery/reference.git"
url = "https://doc.rust-lang.org/stable/reference/index.html"
[[book]]
title = "The Rustonomicon"
repo-url = "https://github.com/rust-lang-nursery/nomicon.git"
url = "https://doc.rust-lang.org/stable/nomicon/index.html"
#[[book]]
#repo-url = "https://github.com/rust-lang/rust.git"
#url = "https://doc.rust-lang.org/stable/unstable-book/index.html"
#folder = "src/doc/unstable-book"
[[book]]
repo-url = "https://github.com/rust-embedded/book.git"
url = "https://doc.rust-lang.org/nightly/embedded-book/index.html"
[[book]]
repo-url = "https://github.com/rust-lang-nursery/api-guidelines.git"
url = "https://rust-lang-nursery.github.io/api-guidelines/"
[[book]]
title = "Asynchronous Programming in Rust"
repo-url = "https://github.com/rust-lang/async-book.git"
url = "https://rust-lang.github.io/async-book/"