|
1 | 1 | # Learning Rust
|
2 | 2 |
|
| 3 | +This website is built using [Hugo](https://gohugo.io/) and [Docura](https://docura.github.io/). |
| 4 | + |
| 5 | +## Local setup |
| 6 | +- [Install the extended version of Hugo](https://gohugo.io/getting-started/installing/) |
| 7 | +- Clone the repository and start Hugo server |
| 8 | + ``` |
| 9 | + $ git clone --depth 1 https://github.com/learning-rust/site.git |
| 10 | + $ cd site |
| 11 | + $ git submodule update --init --recursive |
| 12 | + $ hugo server |
| 13 | + ``` |
| 14 | +
|
| 15 | +## Content |
| 16 | +
|
3 | 17 | ### Basics
|
4 |
| -* [Why Rust](source/docs/a1.why_rust.md) |
5 |
| -* [Installation](source/docs/a2.installation.md) |
6 |
| -* [Hello World](source/docs/a3.hello_world.md) |
7 |
| -* [Cargo,crates and basic project structure](source/docs/a4.cargo,crates_and_basic_project_structure.md) |
8 |
| -* [Comments and documenting the code](source/docs/a5.comments_and_documenting_the_code.md) |
9 |
| -* [Variable bindings, constants and statics](source/docs/a6.variable_bindings,constants_and_statics.md) |
10 |
| -* [Functions](source/docs/a7.functions.md) |
11 |
| -* [Primitive data types](source/docs/a8.primitive_data_types.md) |
12 |
| -* [Operators](source/docs/a9.operators.md) |
13 |
| -* [Control flows](source/docs/a10.control_flows.md) |
| 18 | +* [Why Rust](content/en/docs/a1.why-rust.md) |
| 19 | +* [Installation](content/en/docs/a2.installation.md) |
| 20 | +* [Hello World](content/en/docs/a3.hello-world.md) |
| 21 | +* [Cargo,crates and basic project structure](content/en/docs/a4.cargo-crates-and-basic-project-structure.md) |
| 22 | +* [Comments and documenting the code](content/en/docs/a5.comments-and-documenting-the-code.md) |
| 23 | +* [Variable bindings, constants and statics](content/en/docs/a6.variable-bindings-constants-and-statics.md) |
| 24 | +* [Functions](content/en/docs/a7.functions.md) |
| 25 | +* [Primitive data types](content/en/docs/a8.primitive-data-types.md) |
| 26 | +* [Operators](content/en/docs/a9.operators.md) |
| 27 | +* [Control flows](content/en/docs/a10.control-flows.md) |
14 | 28 |
|
15 | 29 | ### Beyond The Basics
|
16 |
| -* [Vectors](source/docs/b1.vectors.md) |
17 |
| -* [Structs](source/docs/b2.structs.md) |
18 |
| -* [Enums](source/docs/b3.enums.md) |
19 |
| -* [Generics](source/docs/b4.generics.md) |
20 |
| -* [Impls and traits](source/docs/b5.impls_and_traits.md) |
| 30 | +* [Vectors](content/en/docs/b1.vectors.md) |
| 31 | +* [Structs](content/en/docs/b2.structs.md) |
| 32 | +* [Enums](content/en/docs/b3.enums.md) |
| 33 | +* [Generics](content/en/docs/b4.generics.md) |
| 34 | +* [Impls and traits](content/en/docs/b5.impls-and-traits.md) |
21 | 35 |
|
22 | 36 | ### The Tough Part
|
23 |
| -* [Ownership](source/docs/c1.ownership.md) |
24 |
| -* [Borrowing](source/docs/c2.borrowing.md) |
25 |
| -* [Lifetimes](source/docs/c3.lifetimes.md) |
| 37 | +* [Ownership](content/en/docs/c1.ownership.md) |
| 38 | +* [Borrowing](content/en/docs/c2.borrowing.md) |
| 39 | +* [Lifetimes](content/en/docs/c3.lifetimes.md) |
26 | 40 |
|
27 | 41 | ### Lets Get It Started
|
28 |
| -* [Code organization](source/docs/d1.code_organization.md) |
29 |
| -* [Functions](source/docs/d2.functions.md) |
30 |
| -* [Modules](source/docs/d3.modules.md) |
31 |
| -* [Crates](source/docs/d4.crates.md) |
32 |
| -* [Workspaces](source/docs/d5.workspaces.md) |
33 |
| -* [use](source/docs/d6.use.md) |
34 |
| -* [std, primitives and preludes](source/docs/d7.std_primitives_and_preludes.md) |
| 42 | +* [Code organization](content/en/docs/d1.code-organization.md) |
| 43 | +* [Functions](content/en/docs/d2.functions.md) |
| 44 | +* [Modules](content/en/docs/d3.modules.md) |
| 45 | +* [Crates](content/en/docs/d4.crates.md) |
| 46 | +* [Workspaces](content/en/docs/d5.workspaces.md) |
| 47 | +* [use](content/en/docs/d6.use.md) |
| 48 | +* [std, primitives and preludes](content/en/docs/d7.std-primitives-and-preludes.md) |
35 | 49 |
|
36 | 50 | ### Error Handling
|
37 |
| -* [Smart Compiler](source/docs/e1.smart_compiler.md) |
38 |
| -* [Panicking](source/docs/e2.panicking.md) |
39 |
| -* [Option and Result](source/docs/e3.option_and_result.md) |
40 |
| -* [Unwrap and Expect](source/docs/e4.unwrap_and_expect.md) |
41 |
| -* [Error and None Propagation](source/docs/e5.error_and_none_propagation.md) |
42 |
| -* [Combinators](source/docs/e6.combinators.md) |
43 |
| -* [Custom Error Types](source/docs/e7.custom_error_types.md) |
| 51 | +* [Smart Compiler](content/en/docs/e1.smart-compiler.md) |
| 52 | +* [Panicking](content/en/docs/e2.panicking.md) |
| 53 | +* [Option and Result](content/en/docs/e3.option-and-result.md) |
| 54 | +* [Unwrap and Expect](content/en/docs/e4.unwrap-and-expect.md) |
| 55 | +* [Error and None Propagation](content/en/docs/e5.error-and-none-propagation.md) |
| 56 | +* [Combinators](content/en/docs/e6.combinators.md) |
| 57 | +* [Custom Error Types](content/en/docs/e7.custom-error-types.md) |
44 | 58 |
|
45 | 59 | ---
|
46 | 60 | * Site : http://learning-rust.github.io
|
47 | 61 | * Medium: https://medium.com/learning-rust
|
48 | 62 |
|
49 | 63 | > 🐣 I am a **Sri Lankan**🇱🇰 Web Developer who lives in **Singapore**🇸🇬. I am not a native English speaker and just practicing Rust in my leisure time, while working as a Golang/Devops developer. So, if you found any mistake or something I need to be changed, even a spelling/ grammar mistake, feel free to buzz me.
|
50 |
| -
|
51 |
| ---- |
52 |
| - |
53 |
| -# learning-rust.github.io(source) |
54 |
| - |
55 |
| -The website is built with [Hexo](https://hexo.io/) Nodejs blog framework. You can see the generated files at [learning-rust/learning-rust.github.io](https://github.com/learning-rust/learning-rust.github.io) repository. |
56 |
| - |
57 |
| -## Getting started |
58 |
| - |
59 |
| -Install dependencies: |
60 |
| - |
61 |
| -``` bash |
62 |
| -$ git clone https://github.com/learning-rust/site.git |
63 |
| -$ cd site |
64 |
| -$ npm install |
65 |
| -``` |
66 |
| - |
67 |
| -Generate: |
68 |
| - |
69 |
| -``` bash |
70 |
| -$ hexo generate |
71 |
| -``` |
72 |
| - |
73 |
| -Run server: |
74 |
| - |
75 |
| -``` bash |
76 |
| -$ hexo server |
77 |
| -``` |
0 commit comments