Guest User

Untitled

a guest
Nov 20th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1. author: "Steve Klabnik and Carol Nichols, with Contributions from the Rust Community"
  2. title: The Rust Programming Language
  3. lang: en
  4.  
  5. ## Output formats
  6.  
  7. # Uncomment and fill to generate files
  8. # output.html: some_file.html
  9. # output.epub: some_file.epub
  10. # output.pdf: some_file.pdf
  11.  
  12. # Or uncomment the following to generate PDF, HTML and EPUB files based on this file's name
  13. # output: [pdf, epub, html]
  14. output: [epub]
  15. output.base_path: docs/
  16.  
  17. # Uncomment and fill to set cover image (for EPUB)
  18. # cover: some_cover.png
  19.  
  20. rendering.num_depth: 2
  21. rendering.initials: false
  22. rendering.inline_toc: false
  23. rendering.chapter.template: "{{{number}}}. {{{chapter_title}}}"
  24. rendering.chapter.roman_numerals: false
  25. rendering.part.reset_counter: true
  26. rendering.highlight: syntect
  27.  
  28. crowbook.html_as_text: false
  29.  
  30. ## List of chapters
  31. # sed -e 's/^+ \(ch[[:digit:]]\+-0[1-9]-\)/-- \1/g' -i trpl.book
  32. + foreword.md
  33. + ch00-00-introduction.md
  34. + ch01-00-getting-started.md
  35. -- ch01-01-installation.md
  36. -- ch01-02-hello-world.md
  37. -- ch01-03-hello-cargo.md
  38. + ch02-00-guessing-game-tutorial.md
  39. + ch03-00-common-programming-concepts.md
  40. -- ch03-01-variables-and-mutability.md
  41. -- ch03-02-data-types.md
  42. -- ch03-03-how-functions-work.md
  43. -- ch03-04-comments.md
  44. -- ch03-05-control-flow.md
  45. + ch04-00-understanding-ownership.md
  46. -- ch04-01-what-is-ownership.md
  47. -- ch04-02-references-and-borrowing.md
  48. -- ch04-03-slices.md
  49. + ch05-00-structs.md
  50. -- ch05-01-defining-structs.md
  51. -- ch05-02-example-structs.md
  52. -- ch05-03-method-syntax.md
  53. + ch06-00-enums.md
  54. -- ch06-01-defining-an-enum.md
  55. -- ch06-02-match.md
  56. -- ch06-03-if-let.md
  57. + ch07-00-modules.md
  58. -- ch07-01-mod-and-the-filesystem.md
  59. -- ch07-02-controlling-visibility-with-pub.md
  60. -- ch07-03-importing-names-with-use.md
  61. + ch08-00-common-collections.md
  62. -- ch08-01-vectors.md
  63. -- ch08-02-strings.md
  64. -- ch08-03-hash-maps.md
  65. + ch09-00-error-handling.md
  66. -- ch09-01-unrecoverable-errors-with-panic.md
  67. -- ch09-02-recoverable-errors-with-result.md
  68. -- ch09-03-to-panic-or-not-to-panic.md
  69. + ch10-00-generics.md
  70. -- ch10-01-syntax.md
  71. -- ch10-02-traits.md
  72. -- ch10-03-lifetime-syntax.md
  73. + ch11-00-testing.md
  74. -- ch11-01-writing-tests.md
  75. -- ch11-02-running-tests.md
  76. -- ch11-03-test-organization.md
  77. + ch12-00-an-io-project.md
  78. -- ch12-01-accepting-command-line-arguments.md
  79. -- ch12-02-reading-a-file.md
  80. -- ch12-03-improving-error-handling-and-modularity.md
  81. -- ch12-04-testing-the-librarys-functionality.md
  82. -- ch12-05-working-with-environment-variables.md
  83. -- ch12-06-writing-to-stderr-instead-of-stdout.md
  84. + ch13-00-functional-features.md
  85. -- ch13-01-closures.md
  86. -- ch13-02-iterators.md
  87. -- ch13-03-improving-our-io-project.md
  88. -- ch13-04-performance.md
  89. + ch14-00-more-about-cargo.md
  90. -- ch14-01-release-profiles.md
  91. -- ch14-02-publishing-to-crates-io.md
  92. -- ch14-03-cargo-workspaces.md
  93. -- ch14-04-installing-binaries.md
  94. -- ch14-05-extending-cargo.md
  95. + ch15-00-smart-pointers.md
  96. -- ch15-01-box.md
  97. -- ch15-02-deref.md
  98. -- ch15-03-drop.md
  99. -- ch15-04-rc.md
  100. -- ch15-05-interior-mutability.md
  101. -- ch15-06-reference-cycles.md
  102. + ch16-00-concurrency.md
  103. -- ch16-01-threads.md
  104. -- ch16-02-message-passing.md
  105. -- ch16-03-shared-state.md
  106. -- ch16-04-extensible-concurrency-sync-and-send.md
  107. + ch17-00-oop.md
  108. -- ch17-01-what-is-oo.md
  109. -- ch17-02-trait-objects.md
  110. -- ch17-03-oo-design-patterns.md
  111. + ch18-00-patterns.md
  112. -- ch18-01-all-the-places-for-patterns.md
  113. -- ch18-02-refutability.md
  114. -- ch18-03-pattern-syntax.md
  115. + ch19-00-advanced-features.md
  116. -- ch19-01-unsafe-rust.md
  117. -- ch19-02-advanced-lifetimes.md
  118. -- ch19-03-advanced-traits.md
  119. -- ch19-04-advanced-types.md
  120. -- ch19-05-advanced-functions-and-closures.md
  121. + ch20-00-final-project-a-web-server.md
  122. -- ch20-01-single-threaded.md
  123. -- ch20-02-multithreaded.md
  124. -- ch20-03-graceful-shutdown-and-cleanup.md
  125. + appendix-00.md
  126. + appendix-01-keywords.md
  127. + appendix-02-operators.md
  128. + appendix-03-derivable-traits.md
  129. + appendix-04-macros.md
  130. + appendix-05-translation.md
  131. + appendix-06-nightly-rust.md
  132. + appendix-07-other-useful-tools.md
Add Comment
Please, Sign In to add comment