├── .github └── workflows │ └── github-pages.yml ├── .gitignore ├── Easy_Rust_sample_image.png ├── LICENSE ├── Makefile ├── README.md ├── book.toml ├── createBookFromReadme.sh ├── createGithubPagesFromReadme.sh ├── createPdfFromReadme.sh └── pdf_metadata.yaml /.github/workflows/github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/.github/workflows/github-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # macOS garbage 2 | .DS_Store 3 | 4 | snippets 5 | book 6 | latex 7 | -------------------------------------------------------------------------------- /Easy_Rust_sample_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/Easy_Rust_sample_image.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/book.toml -------------------------------------------------------------------------------- /createBookFromReadme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/createBookFromReadme.sh -------------------------------------------------------------------------------- /createGithubPagesFromReadme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/createGithubPagesFromReadme.sh -------------------------------------------------------------------------------- /createPdfFromReadme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/createPdfFromReadme.sh -------------------------------------------------------------------------------- /pdf_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ne-zero/easy_rust_fa/HEAD/pdf_metadata.yaml --------------------------------------------------------------------------------