trackler 2.2.1.54 → 2.2.1.55

Sign up to get free protection for your applications and to get access to all the features.
Files changed (280) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trackler/version.rb +1 -1
  3. data/problem-specifications/exercises/dominoes/description.md +3 -3
  4. data/problem-specifications/exercises/two-fer/description.md +0 -28
  5. data/tracks/c/config.json +12 -0
  6. data/tracks/c/exercises/queen-attack/README.md +65 -0
  7. data/tracks/c/exercises/queen-attack/makefile +15 -0
  8. data/tracks/c/exercises/queen-attack/src/example.c +25 -0
  9. data/tracks/c/exercises/queen-attack/src/queen_attack.h +19 -0
  10. data/tracks/c/exercises/queen-attack/test/test_queen_attack.c +190 -0
  11. data/tracks/c/exercises/queen-attack/test/vendor/unity.c +1300 -0
  12. data/tracks/c/exercises/queen-attack/test/vendor/unity.h +274 -0
  13. data/tracks/c/exercises/queen-attack/test/vendor/unity_internals.h +701 -0
  14. data/tracks/common-lisp/exercises/acronym/README.md +1 -1
  15. data/tracks/delphi/exercises/two-fer/README.md +0 -28
  16. data/tracks/ecmascript/config.json +41 -0
  17. data/tracks/ecmascript/exercises/accumulate/package.json +5 -3
  18. data/tracks/ecmascript/exercises/acronym/package.json +5 -3
  19. data/tracks/ecmascript/exercises/all-your-base/package.json +5 -3
  20. data/tracks/ecmascript/exercises/allergies/package.json +5 -3
  21. data/tracks/ecmascript/exercises/alphametics/package.json +5 -3
  22. data/tracks/ecmascript/exercises/anagram/package.json +5 -3
  23. data/tracks/ecmascript/exercises/atbash-cipher/package.json +5 -3
  24. data/tracks/ecmascript/exercises/beer-song/package.json +5 -3
  25. data/tracks/ecmascript/exercises/binary-search-tree/package.json +5 -3
  26. data/tracks/ecmascript/exercises/binary-search/package.json +5 -3
  27. data/tracks/ecmascript/exercises/binary/package.json +5 -3
  28. data/tracks/ecmascript/exercises/bob/package.json +5 -3
  29. data/tracks/ecmascript/exercises/bowling/package.json +2 -2
  30. data/tracks/ecmascript/exercises/bracket-push/package.json +5 -3
  31. data/tracks/ecmascript/exercises/change/README.md +44 -0
  32. data/tracks/ecmascript/exercises/change/change.spec.js +80 -0
  33. data/tracks/ecmascript/exercises/change/example.js +120 -0
  34. data/tracks/ecmascript/exercises/change/package.json +69 -0
  35. data/tracks/ecmascript/exercises/circular-buffer/package.json +5 -3
  36. data/tracks/ecmascript/exercises/clock/package.json +5 -3
  37. data/tracks/ecmascript/exercises/collatz-conjecture/package.json +6 -4
  38. data/tracks/ecmascript/exercises/connect/package.json +5 -3
  39. data/tracks/ecmascript/exercises/crypto-square/package.json +5 -3
  40. data/tracks/ecmascript/exercises/custom-set/package.json +5 -3
  41. data/tracks/ecmascript/exercises/diamond/package.json +5 -3
  42. data/tracks/ecmascript/exercises/difference-of-squares/package.json +5 -3
  43. data/tracks/ecmascript/exercises/diffie-hellman/package.json +5 -3
  44. data/tracks/ecmascript/exercises/etl/package.json +5 -3
  45. data/tracks/ecmascript/exercises/flatten-array/package.json +5 -3
  46. data/tracks/ecmascript/exercises/food-chain/package.json +5 -3
  47. data/tracks/ecmascript/exercises/gigasecond/package.json +5 -3
  48. data/tracks/ecmascript/exercises/grade-school/package.json +5 -3
  49. data/tracks/ecmascript/exercises/grains/package.json +5 -3
  50. data/tracks/ecmascript/exercises/hamming/package.json +5 -3
  51. data/tracks/ecmascript/exercises/hello-world/package.json +5 -3
  52. data/tracks/ecmascript/exercises/hexadecimal/package.json +5 -3
  53. data/tracks/ecmascript/exercises/isbn-verifier/README.md +62 -0
  54. data/tracks/ecmascript/exercises/isbn-verifier/example.js +17 -0
  55. data/tracks/ecmascript/exercises/isbn-verifier/isbn-verifier.spec.js +81 -0
  56. data/tracks/ecmascript/exercises/isbn-verifier/package.json +71 -0
  57. data/tracks/ecmascript/exercises/isogram/package.json +5 -3
  58. data/tracks/ecmascript/exercises/kindergarten-garden/package.json +5 -3
  59. data/tracks/ecmascript/exercises/largest-series-product/package.json +5 -3
  60. data/tracks/ecmascript/exercises/leap/package.json +5 -3
  61. data/tracks/ecmascript/exercises/linked-list/package.json +5 -3
  62. data/tracks/ecmascript/exercises/list-ops/package.json +5 -3
  63. data/tracks/ecmascript/exercises/luhn/package.json +5 -3
  64. data/tracks/ecmascript/exercises/matrix/package.json +5 -3
  65. data/tracks/ecmascript/exercises/meetup/package.json +5 -3
  66. data/tracks/ecmascript/exercises/minesweeper/package.json +5 -3
  67. data/tracks/ecmascript/exercises/nth-prime/package.json +5 -3
  68. data/tracks/ecmascript/exercises/ocr-numbers/package.json +5 -3
  69. data/tracks/ecmascript/exercises/octal/package.json +5 -3
  70. data/tracks/ecmascript/exercises/palindrome-products/package.json +5 -3
  71. data/tracks/ecmascript/exercises/pangram/package.json +5 -3
  72. data/tracks/ecmascript/exercises/pascals-triangle/package.json +5 -3
  73. data/tracks/ecmascript/exercises/perfect-numbers/package.json +5 -3
  74. data/tracks/ecmascript/exercises/phone-number/package.json +5 -3
  75. data/tracks/ecmascript/exercises/pig-latin/package.json +5 -3
  76. data/tracks/ecmascript/exercises/prime-factors/package.json +5 -3
  77. data/tracks/ecmascript/exercises/proverb/package.json +5 -3
  78. data/tracks/ecmascript/exercises/pythagorean-triplet/package.json +5 -3
  79. data/tracks/ecmascript/exercises/queen-attack/package.json +5 -3
  80. data/tracks/ecmascript/exercises/raindrops/package.json +5 -3
  81. data/tracks/ecmascript/exercises/rna-transcription/package.json +5 -3
  82. data/tracks/ecmascript/exercises/robot-name/package.json +5 -3
  83. data/tracks/ecmascript/exercises/robot-simulator/package.json +5 -3
  84. data/tracks/ecmascript/exercises/roman-numerals/package.json +5 -3
  85. data/tracks/ecmascript/exercises/run-length-encoding/package.json +5 -3
  86. data/tracks/ecmascript/exercises/saddle-points/package.json +5 -3
  87. data/tracks/ecmascript/exercises/say/package.json +5 -3
  88. data/tracks/ecmascript/exercises/scrabble-score/package.json +5 -3
  89. data/tracks/ecmascript/exercises/secret-handshake/package.json +5 -3
  90. data/tracks/ecmascript/exercises/series/package.json +5 -3
  91. data/tracks/ecmascript/exercises/sieve/package.json +5 -3
  92. data/tracks/ecmascript/exercises/simple-cipher/package.json +5 -3
  93. data/tracks/ecmascript/exercises/simple-linked-list/package.json +5 -3
  94. data/tracks/ecmascript/exercises/space-age/package.json +5 -3
  95. data/tracks/ecmascript/exercises/strain/package.json +5 -3
  96. data/tracks/ecmascript/exercises/sublist/package.json +5 -3
  97. data/tracks/ecmascript/exercises/sum-of-multiples/package.json +5 -3
  98. data/tracks/ecmascript/exercises/transpose/README.md +94 -0
  99. data/tracks/ecmascript/exercises/transpose/example.js +12 -0
  100. data/tracks/ecmascript/exercises/transpose/package.json +71 -0
  101. data/tracks/ecmascript/exercises/transpose/transpose.spec.js +67 -0
  102. data/tracks/ecmascript/exercises/triangle/package.json +5 -3
  103. data/tracks/ecmascript/exercises/trinary/package.json +5 -3
  104. data/tracks/ecmascript/exercises/twelve-days/package.json +5 -3
  105. data/tracks/ecmascript/exercises/two-bucket/package.json +5 -3
  106. data/tracks/ecmascript/exercises/two-fer/package.json +5 -3
  107. data/tracks/ecmascript/exercises/word-count/package.json +5 -3
  108. data/tracks/ecmascript/exercises/word-search/package.json +5 -3
  109. data/tracks/ecmascript/exercises/wordy/package.json +5 -3
  110. data/tracks/ecmascript/package-lock.json +6219 -0
  111. data/tracks/ecmascript/package.json +5 -3
  112. data/tracks/erlang/exercises/collatz-conjecture/src/collatz_conjecture.erl +3 -4
  113. data/tracks/erlang/exercises/collatz-conjecture/src/example.erl +3 -3
  114. data/tracks/erlang/exercises/collatz-conjecture/test/collatz_conjecture_tests.erl +13 -9
  115. data/tracks/erlang/exercises/hello-world/src/hello_world.erl +2 -2
  116. data/tracks/erlang/exercises/leap/src/example.erl +1 -1
  117. data/tracks/erlang/exercises/leap/src/leap.erl +3 -3
  118. data/tracks/erlang/exercises/leap/test/leap_tests.erl +9 -9
  119. data/tracks/erlang/testgen/src/testgen.erl +16 -13
  120. data/tracks/erlang/testgen/src/tgen.erl +65 -38
  121. data/tracks/erlang/testgen/src/tgen_collatz-conjecture.erl +38 -0
  122. data/tracks/erlang/testgen/src/tgen_hello-world.erl +11 -19
  123. data/tracks/erlang/testgen/src/tgen_leap.erl +31 -0
  124. data/tracks/erlang/testgen/src/tgs.erl +80 -0
  125. data/tracks/fsharp/exercises/alphametics/AlphameticsTest.fs +78 -23
  126. data/tracks/fsharp/exercises/anagram/AnagramTest.fs +66 -34
  127. data/tracks/fsharp/exercises/connect/ConnectTest.fs +81 -68
  128. data/tracks/fsharp/exercises/connect/Example.fs +9 -5
  129. data/tracks/fsharp/exercises/food-chain/Example.fs +5 -9
  130. data/tracks/fsharp/exercises/food-chain/FoodChain.fs +2 -2
  131. data/tracks/fsharp/exercises/food-chain/FoodChainTest.fs +143 -75
  132. data/tracks/fsharp/exercises/hamming/Example.fs +8 -4
  133. data/tracks/fsharp/exercises/hamming/Hamming.fs +1 -1
  134. data/tracks/fsharp/exercises/hamming/HammingTest.fs +53 -13
  135. data/tracks/fsharp/exercises/house/Example.fs +5 -6
  136. data/tracks/fsharp/exercises/house/House.fs +3 -1
  137. data/tracks/fsharp/exercises/house/HouseTest.fs +272 -96
  138. data/tracks/fsharp/exercises/meetup/Example.fs +1 -1
  139. data/tracks/fsharp/exercises/meetup/Meetup.fs +1 -1
  140. data/tracks/fsharp/exercises/meetup/MeetupTest.fs +384 -73
  141. data/tracks/fsharp/exercises/ocr-numbers/Example.fs +43 -35
  142. data/tracks/fsharp/exercises/ocr-numbers/OcrNumbersTest.fs +160 -125
  143. data/tracks/fsharp/exercises/two-fer/Example.fs +4 -2
  144. data/tracks/fsharp/exercises/two-fer/TwoFer.fs +1 -1
  145. data/tracks/fsharp/exercises/two-fer/TwoFerTest.fs +7 -4
  146. data/tracks/fsharp/generators/Common.fs +6 -2
  147. data/tracks/fsharp/generators/Exercise.fs +14 -13
  148. data/tracks/fsharp/generators/Generators.fs +145 -2
  149. data/tracks/fsharp/generators/Options.fs +4 -6
  150. data/tracks/fsharp/generators/Output.fs +2 -2
  151. data/tracks/fsharp/generators/Program.fs +4 -3
  152. data/tracks/java/exercises/saddle-points/README.md +1 -1
  153. data/tracks/java/exercises/two-fer/README.md +0 -28
  154. data/tracks/javascript/exercises/beer-song/example.js +18 -14
  155. data/tracks/kotlin/exercises/saddle-points/README.md +1 -1
  156. data/tracks/kotlin/exercises/two-fer/README.md +0 -28
  157. data/tracks/lua/config.json +12 -0
  158. data/tracks/lua/exercises/collatz-conjecture/README.md +43 -0
  159. data/tracks/lua/exercises/collatz-conjecture/collatz-conjecture_spec.lua +33 -0
  160. data/tracks/lua/exercises/collatz-conjecture/example.lua +16 -0
  161. data/tracks/python/config.json +4 -1
  162. data/tracks/python/exercises/binary-search/binary_search_test.py +2 -0
  163. data/tracks/python/exercises/change/change_test.py +2 -0
  164. data/tracks/python/exercises/circular-buffer/circular_buffer_test.py +56 -50
  165. data/tracks/python/exercises/forth/example.py +3 -1
  166. data/tracks/python/exercises/forth/forth_test.py +43 -26
  167. data/tracks/python/exercises/nth-prime/nth_prime.py +1 -1
  168. data/tracks/python/exercises/rna-transcription/README.md +5 -0
  169. data/tracks/python/exercises/rna-transcription/example.py +1 -1
  170. data/tracks/python/exercises/rna-transcription/rna_transcription_test.py +7 -4
  171. data/tracks/python/exercises/robot-simulator/robot_simulator_test.py +9 -7
  172. data/tracks/python/exercises/saddle-points/saddle_points_test.py +15 -5
  173. data/tracks/python/exercises/simple-cipher/simple_cipher.py +7 -1
  174. data/tracks/python/exercises/word-count/example.py +6 -4
  175. data/tracks/python/exercises/word-count/word_count_test.py +49 -22
  176. data/tracks/python/exercises/word-search/word_search_test.py +104 -12
  177. data/tracks/rust/.travis.yml +2 -0
  178. data/tracks/rust/README.md +5 -0
  179. data/tracks/rust/_test/check-exercises.sh +0 -6
  180. data/tracks/rust/_test/ensure-lib-src-rs-exist.sh +19 -0
  181. data/tracks/rust/_test/ensure-stubs-compile.sh +26 -0
  182. data/tracks/rust/config.json +12 -0
  183. data/tracks/rust/config/exercise-readme-insert.md +3 -2
  184. data/tracks/rust/docs/ABOUT.md +2 -2
  185. data/tracks/rust/docs/LEARNING.md +1 -1
  186. data/tracks/rust/docs/RESOURCES.md +1 -1
  187. data/tracks/rust/docs/TESTS.md +2 -2
  188. data/tracks/rust/exercises/accumulate/README.md +3 -2
  189. data/tracks/rust/exercises/acronym/README.md +3 -2
  190. data/tracks/rust/exercises/all-your-base/README.md +3 -2
  191. data/tracks/rust/exercises/allergies/README.md +3 -2
  192. data/tracks/rust/exercises/alphametics/README.md +3 -2
  193. data/tracks/rust/exercises/anagram/README.md +3 -2
  194. data/tracks/rust/exercises/atbash-cipher/README.md +3 -2
  195. data/tracks/rust/exercises/beer-song/README.md +3 -2
  196. data/tracks/rust/exercises/beer-song/src/lib.rs +2 -2
  197. data/tracks/rust/exercises/binary-search/README.md +3 -2
  198. data/tracks/rust/exercises/bob/README.md +3 -2
  199. data/tracks/rust/exercises/bob/src/lib.rs +1 -1
  200. data/tracks/rust/exercises/bowling/README.md +3 -2
  201. data/tracks/rust/exercises/bracket-push/HINTS.md +1 -1
  202. data/tracks/rust/exercises/bracket-push/README.md +4 -3
  203. data/tracks/rust/exercises/circular-buffer/README.md +3 -2
  204. data/tracks/rust/exercises/clock/README.md +3 -2
  205. data/tracks/rust/exercises/collatz-conjecture/README.md +3 -2
  206. data/tracks/rust/exercises/collatz-conjecture/src/lib.rs +1 -1
  207. data/tracks/rust/exercises/crypto-square/README.md +3 -2
  208. data/tracks/rust/exercises/custom-set/README.md +3 -2
  209. data/tracks/rust/exercises/decimal/.meta/ALLOWED_TO_NOT_COMPILE +2 -0
  210. data/tracks/rust/exercises/decimal/README.md +3 -2
  211. data/tracks/rust/exercises/difference-of-squares/README.md +3 -2
  212. data/tracks/rust/exercises/difference-of-squares/src/lib.rs +3 -3
  213. data/tracks/rust/exercises/dominoes/README.md +3 -2
  214. data/tracks/rust/exercises/etl/README.md +3 -2
  215. data/tracks/rust/exercises/forth/README.md +3 -2
  216. data/tracks/rust/exercises/forth/src/lib.rs +3 -0
  217. data/tracks/rust/exercises/gigasecond/README.md +3 -2
  218. data/tracks/rust/exercises/grade-school/README.md +3 -2
  219. data/tracks/rust/exercises/grains/README.md +3 -2
  220. data/tracks/rust/exercises/hamming/README.md +3 -2
  221. data/tracks/rust/exercises/hello-world/GETTING_STARTED.md +1 -1
  222. data/tracks/rust/exercises/hello-world/README.md +3 -2
  223. data/tracks/rust/exercises/hexadecimal/README.md +3 -2
  224. data/tracks/rust/exercises/isogram/.gitignore +8 -0
  225. data/tracks/rust/exercises/isogram/Cargo.toml +3 -0
  226. data/tracks/rust/exercises/isogram/README.md +52 -0
  227. data/tracks/rust/exercises/isogram/example.rs +12 -0
  228. data/tracks/rust/exercises/isogram/src/lib.rs +0 -0
  229. data/tracks/rust/exercises/isogram/tests/isogram.rs +72 -0
  230. data/tracks/rust/exercises/largest-series-product/README.md +3 -2
  231. data/tracks/rust/exercises/leap/README.md +3 -2
  232. data/tracks/rust/exercises/leap/src/lib.rs +1 -1
  233. data/tracks/rust/exercises/luhn-from/README.md +3 -2
  234. data/tracks/rust/exercises/luhn-trait/.meta/description.md +2 -2
  235. data/tracks/rust/exercises/luhn-trait/README.md +5 -4
  236. data/tracks/rust/exercises/luhn/README.md +3 -2
  237. data/tracks/rust/exercises/minesweeper/README.md +3 -2
  238. data/tracks/rust/exercises/nth-prime/README.md +3 -2
  239. data/tracks/rust/exercises/nucleotide-codons/README.md +3 -2
  240. data/tracks/rust/exercises/nucleotide-count/README.md +3 -2
  241. data/tracks/rust/exercises/ocr-numbers/README.md +3 -2
  242. data/tracks/rust/exercises/pangram/README.md +3 -2
  243. data/tracks/rust/exercises/parallel-letter-frequency/HINTS.md +1 -1
  244. data/tracks/rust/exercises/parallel-letter-frequency/README.md +4 -3
  245. data/tracks/rust/exercises/pascals-triangle/README.md +3 -2
  246. data/tracks/rust/exercises/perfect-numbers/README.md +3 -2
  247. data/tracks/rust/exercises/phone-number/README.md +3 -2
  248. data/tracks/rust/exercises/pig-latin/README.md +3 -2
  249. data/tracks/rust/exercises/poker/README.md +3 -2
  250. data/tracks/rust/exercises/prime-factors/README.md +3 -2
  251. data/tracks/rust/exercises/protein-translation/README.md +3 -2
  252. data/tracks/rust/exercises/proverb/README.md +3 -2
  253. data/tracks/rust/exercises/proverb/src/lib.rs +1 -1
  254. data/tracks/rust/exercises/pythagorean-triplet/README.md +3 -2
  255. data/tracks/rust/exercises/queen-attack/README.md +3 -2
  256. data/tracks/rust/exercises/raindrops/README.md +3 -2
  257. data/tracks/rust/exercises/raindrops/src/lib.rs +1 -1
  258. data/tracks/rust/exercises/react/README.md +3 -2
  259. data/tracks/rust/exercises/rectangles/README.md +3 -2
  260. data/tracks/rust/exercises/rna-transcription/README.md +3 -2
  261. data/tracks/rust/exercises/robot-name/README.md +3 -2
  262. data/tracks/rust/exercises/robot-simulator/README.md +3 -2
  263. data/tracks/rust/exercises/roman-numerals/README.md +3 -2
  264. data/tracks/rust/exercises/rotational-cipher/README.md +3 -2
  265. data/tracks/rust/exercises/run-length-encoding/README.md +3 -2
  266. data/tracks/rust/exercises/say/README.md +3 -2
  267. data/tracks/rust/exercises/scrabble-score/README.md +3 -2
  268. data/tracks/rust/exercises/sieve/README.md +3 -2
  269. data/tracks/rust/exercises/space-age/README.md +3 -2
  270. data/tracks/rust/exercises/sublist/README.md +3 -2
  271. data/tracks/rust/exercises/sum-of-multiples/README.md +3 -2
  272. data/tracks/rust/exercises/sum-of-multiples/src/lib.rs +1 -1
  273. data/tracks/rust/exercises/tournament/README.md +3 -2
  274. data/tracks/rust/exercises/triangle/HINTS.md +2 -2
  275. data/tracks/rust/exercises/triangle/README.md +5 -4
  276. data/tracks/rust/exercises/variable-length-quantity/README.md +3 -2
  277. data/tracks/rust/exercises/word-count/README.md +3 -2
  278. data/tracks/rust/exercises/wordy/README.md +3 -2
  279. metadata +38 -3
  280. data/tracks/ecmascript/yarn.lock +0 -3144
@@ -0,0 +1,19 @@
1
+ #!/bin/sh
2
+
3
+ repo=$(cd "$(dirname "$0")/.." && pwd)
4
+
5
+ missing=""
6
+
7
+ for dir in $repo/exercises/*/; do
8
+ exercise=$(basename "$dir")
9
+ if [ ! -f $dir/src/lib.rs ]; then
10
+ # https://github.com/exercism/rust/pull/270
11
+ echo "$exercise is missing a src/lib.rs; please create one (an empty file is acceptable)"
12
+ missing="$missing\n$exercise"
13
+ fi
14
+ done
15
+
16
+ if [ -n "$missing" ]; then
17
+ echo "Exercises missing src/lib.rs:$missing"
18
+ exit 1
19
+ fi
@@ -0,0 +1,26 @@
1
+ #!/bin/sh
2
+
3
+ repo=$(cd "$(dirname "$0")/.." && pwd)
4
+
5
+ broken=""
6
+
7
+ for dir in $repo/exercises/*/; do
8
+ exercise=$(basename "$dir")
9
+
10
+ # If src/lib.rs contains any non-comment line that contains any non-spaces,
11
+ # it probably contains function signatures, and these should compile.
12
+ if grep -v '^//' $dir/src/lib.rs | grep '\S' > /dev/null; then
13
+ allowed_file=$dir/.meta/ALLOWED_TO_NOT_COMPILE
14
+ if [ -f $allowed_file ]; then
15
+ echo "$exercise's stub is allowed to not compile"
16
+ elif ! (cd $dir && cargo test --quiet --no-run); then
17
+ echo "$exercise's stub does not compile; please make it compile or remove all non-commented lines"
18
+ broken="$broken\n$exercise"
19
+ fi
20
+ fi
21
+ done
22
+
23
+ if [ -n "$broken" ]; then
24
+ echo "Exercises that don't compile:$broken"
25
+ exit 1
26
+ fi
@@ -153,6 +153,18 @@
153
153
  "error handling with Result<T, E>"
154
154
  ]
155
155
  },
156
+ {
157
+ "uuid": "79613fd8-b7da-11e7-abc4-cec278b6b50a",
158
+ "slug": "isogram",
159
+ "core": false,
160
+ "unlocked_by": null,
161
+ "difficulty": 3,
162
+ "topics": [
163
+ "chars",
164
+ "iterators",
165
+ "strings"
166
+ ]
167
+ },
156
168
  {
157
169
  "uuid": "4ba35adb-230b-49a6-adc9-2d3cd9a4c538",
158
170
  "slug": "say",
@@ -17,7 +17,7 @@ to pass again. The test file is located in the `tests` directory. You can
17
17
  also remove the ignore flag from all the tests to get them to run all at once
18
18
  if you wish.
19
19
 
20
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
20
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
21
21
  haven't already, it will help you with organizing your files.
22
22
 
23
23
  ## Feedback, Issues, Pull Requests
@@ -27,4 +27,5 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
27
27
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
28
28
 
29
29
  [help-page]: http://exercism.io/languages/rust
30
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
30
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
31
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
@@ -1,7 +1,7 @@
1
- Rust aims to bring modern language design and an advanced type system to systems programming. Rust does not use a garbage collector, but instead ensures safety and optimizes code at compile time. The concept of [ownership](https://doc.rust-lang.org/book/ownership.html) is how Rust achieves its largest goal, memory safety.
1
+ Rust aims to bring modern language design and an advanced type system to systems programming. Rust does not use a garbage collector, but instead ensures safety and optimizes code at compile time. The concept of [ownership](https://doc.rust-lang.org/book/second-edition/ch04-00-understanding-ownership.html) is how Rust achieves its largest goal, memory safety.
2
2
 
3
3
  Rust core and the standard library contain a minimal set of functionality. Rustaceans are encouraged to add features, in the form of libraries called _crates_, to the language and then share them on [crates.io](https://crates.io/).
4
4
 
5
5
  As a systems-level language, Rust is frequently used for building any tool where speed, performance and stability are paramount. The [Awesome Rust](https://github.com/kud1ing/awesome-rust) list collects examples of Rust projects, which include CLI tools, ORMs, operating systems and games. Regardless of what you build in Rust, it will be fast and memory safe!
6
6
 
7
- The home page for Rust is [rust-lang.org](https://www.rust-lang.org/). Rust has excellent documentation at [rust-lang.org/documentation.html](https://www.rust-lang.org/documentation.html). Newcomers should start with "The Book" located at [doc.rust-lang.org/book/](https://doc.rust-lang.org/book/).
7
+ The home page for Rust is [rust-lang.org](https://www.rust-lang.org/). Rust has excellent documentation at [rust-lang.org/documentation.html](https://www.rust-lang.org/documentation.html). Newcomers should start with "The Book" located at [doc.rust-lang.org/book/second-edition/](https://doc.rust-lang.org/book/second-edition/).
@@ -1,6 +1,6 @@
1
1
  ## Learning Rust
2
2
 
3
- * [The Rust Programming Language](http://doc.rust-lang.org/stable/book/) is a great resource for getting started with Rust as well as diving deeper into specific features of Rust.
3
+ * [The Rust Programming Language](https://doc.rust-lang.org/book/second-edition/) is a great resource for getting started with Rust as well as diving deeper into specific features of Rust.
4
4
  * [Rust by Example](http://rustbyexample.com) shows you examples of the most common things you will be writing in Rust.
5
5
  * [Into_rust()](http://intorust.com/) "Screencasts for learning Rust."
6
6
  * [Rustlings](https://github.com/carols10cents/rustlings) "Small exercises to get you used to reading and writing Rust code."
@@ -1,6 +1,6 @@
1
1
  ## Recommended Learning Resources
2
2
 
3
- * [The Rust Programming Language](http://doc.rust-lang.org/stable/book/) is a great resource for getting started with Rust as well as diving deeper into specific features of Rust.
3
+ * [The Rust Programming Language](https://doc.rust-lang.org/book/second-edition/) is a great resource for getting started with Rust as well as diving deeper into specific features of Rust.
4
4
  * [Rust by Example](http://rustbyexample.com) shows you examples of the most common things you will be writing in Rust.
5
5
  * The [Rust API Documentation](http://doc.rust-lang.org/std/) can be used to discover new methods and how they work.
6
6
  * [#rust](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust) on irc.mozilla.org is the official Rust IRC channel. Other channels include (but not limited to): [#rust-gamedev](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-gamedev), [#rust-osdev](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-osdev), and [#rust-webdev](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-webdev).
@@ -2,7 +2,7 @@
2
2
 
3
3
  Write your code in `src/lib.rs`. Some exercises come with a stub file in `src/lib.rs` that will show you the signatures of the code you'll need to write. If the exercise does not come with a `src/lib.rs` file, create one.
4
4
 
5
- The directory must be named `src` and the file must be named `lib.rs` otherwise your code will not compile. For more details, check out the rustlang book [chapter on crates and modules](http://doc.rust-lang.org/stable/book/crates-and-modules.html)
5
+ The directory must be named `src` and the file must be named `lib.rs` otherwise your code will not compile. For more details, check out the rustlang book [chapter on modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html)
6
6
 
7
7
  ### Running Tests
8
8
 
@@ -16,4 +16,4 @@ Only the first test is enabled by default. After you are ready to pass the next
16
16
 
17
17
  You should try to write as little code possible to get the tests to pass. Let the test failures guide you to what should be written next.
18
18
 
19
- Because Rust checks all code at compile time you may find that your tests won't compile until you write the required code. Even `ignore`d tests are checked at compile time. You can [comment out](https://doc.rust-lang.org/stable/book/comments.html) tests that won't compile by starting each line with a `//`. Then, when you're ready to work on that test, you can un-comment it.
19
+ Because Rust checks all code at compile time you may find that your tests won't compile until you write the required code. Even `ignore`d tests are checked at compile time. You can [comment out](https://doc.rust-lang.org/book/second-edition/ch03-04-comments.html) tests that won't compile by starting each line with a `//`. Then, when you're ready to work on that test, you can un-comment it.
@@ -56,7 +56,7 @@ to pass again. The test file is located in the `tests` directory. You can
56
56
  also remove the ignore flag from all the tests to get them to run all at once
57
57
  if you wish.
58
58
 
59
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
59
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
60
60
  haven't already, it will help you with organizing your files.
61
61
 
62
62
  ## Feedback, Issues, Pull Requests
@@ -66,7 +66,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
66
66
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
67
67
 
68
68
  [help-page]: http://exercism.io/languages/rust
69
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
69
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
70
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
70
71
 
71
72
  ## Source
72
73
 
@@ -27,7 +27,7 @@ to pass again. The test file is located in the `tests` directory. You can
27
27
  also remove the ignore flag from all the tests to get them to run all at once
28
28
  if you wish.
29
29
 
30
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
30
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
31
31
  haven't already, it will help you with organizing your files.
32
32
 
33
33
  ## Feedback, Issues, Pull Requests
@@ -37,7 +37,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
37
37
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
38
38
 
39
39
  [help-page]: http://exercism.io/languages/rust
40
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
40
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
41
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
41
42
 
42
43
  ## Source
43
44
 
@@ -50,7 +50,7 @@ to pass again. The test file is located in the `tests` directory. You can
50
50
  also remove the ignore flag from all the tests to get them to run all at once
51
51
  if you wish.
52
52
 
53
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
53
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
54
54
  haven't already, it will help you with organizing your files.
55
55
 
56
56
  ## Feedback, Issues, Pull Requests
@@ -60,7 +60,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
60
60
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
61
61
 
62
62
  [help-page]: http://exercism.io/languages/rust
63
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
63
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
64
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
64
65
 
65
66
 
66
67
  ## Submitting Incomplete Solutions
@@ -49,7 +49,7 @@ to pass again. The test file is located in the `tests` directory. You can
49
49
  also remove the ignore flag from all the tests to get them to run all at once
50
50
  if you wish.
51
51
 
52
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
52
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
53
53
  haven't already, it will help you with organizing your files.
54
54
 
55
55
  ## Feedback, Issues, Pull Requests
@@ -59,7 +59,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
59
59
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
60
60
 
61
61
  [help-page]: http://exercism.io/languages/rust
62
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
62
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
63
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
63
64
 
64
65
  ## Source
65
66
 
@@ -50,7 +50,7 @@ to pass again. The test file is located in the `tests` directory. You can
50
50
  also remove the ignore flag from all the tests to get them to run all at once
51
51
  if you wish.
52
52
 
53
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
53
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
54
54
  haven't already, it will help you with organizing your files.
55
55
 
56
56
  ## Feedback, Issues, Pull Requests
@@ -60,7 +60,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
60
60
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
61
61
 
62
62
  [help-page]: http://exercism.io/languages/rust
63
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
63
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
64
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
64
65
 
65
66
 
66
67
  ## Submitting Incomplete Solutions
@@ -25,7 +25,7 @@ to pass again. The test file is located in the `tests` directory. You can
25
25
  also remove the ignore flag from all the tests to get them to run all at once
26
26
  if you wish.
27
27
 
28
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
28
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
29
29
  haven't already, it will help you with organizing your files.
30
30
 
31
31
  ## Feedback, Issues, Pull Requests
@@ -35,7 +35,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
35
35
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
36
36
 
37
37
  [help-page]: http://exercism.io/languages/rust
38
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
38
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
39
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
39
40
 
40
41
  ## Source
41
42
 
@@ -46,7 +46,7 @@ to pass again. The test file is located in the `tests` directory. You can
46
46
  also remove the ignore flag from all the tests to get them to run all at once
47
47
  if you wish.
48
48
 
49
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
49
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
50
50
  haven't already, it will help you with organizing your files.
51
51
 
52
52
  ## Feedback, Issues, Pull Requests
@@ -56,7 +56,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
56
56
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
57
57
 
58
58
  [help-page]: http://exercism.io/languages/rust
59
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
59
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
60
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
60
61
 
61
62
  ## Source
62
63
 
@@ -339,7 +339,7 @@ to pass again. The test file is located in the `tests` directory. You can
339
339
  also remove the ignore flag from all the tests to get them to run all at once
340
340
  if you wish.
341
341
 
342
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
342
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
343
343
  haven't already, it will help you with organizing your files.
344
344
 
345
345
  ## Feedback, Issues, Pull Requests
@@ -349,7 +349,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
349
349
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
350
350
 
351
351
  [help-page]: http://exercism.io/languages/rust
352
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
352
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
353
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
353
354
 
354
355
  ## Source
355
356
 
@@ -1,7 +1,7 @@
1
1
  pub fn verse(n: i32) -> String {
2
-
2
+ unimplemented!()
3
3
  }
4
4
 
5
5
  pub fn sing(start: i32, end: i32) -> String {
6
-
6
+ unimplemented!()
7
7
  }
@@ -93,7 +93,7 @@ to pass again. The test file is located in the `tests` directory. You can
93
93
  also remove the ignore flag from all the tests to get them to run all at once
94
94
  if you wish.
95
95
 
96
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
96
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
97
97
  haven't already, it will help you with organizing your files.
98
98
 
99
99
  ## Feedback, Issues, Pull Requests
@@ -103,7 +103,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
103
103
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
104
104
 
105
105
  [help-page]: http://exercism.io/languages/rust
106
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
106
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
107
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
107
108
 
108
109
  ## Source
109
110
 
@@ -30,7 +30,7 @@ to pass again. The test file is located in the `tests` directory. You can
30
30
  also remove the ignore flag from all the tests to get them to run all at once
31
31
  if you wish.
32
32
 
33
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
33
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
34
34
  haven't already, it will help you with organizing your files.
35
35
 
36
36
  ## Feedback, Issues, Pull Requests
@@ -40,7 +40,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
40
40
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
41
41
 
42
42
  [help-page]: http://exercism.io/languages/rust
43
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
43
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
44
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
44
45
 
45
46
  ## Source
46
47
 
@@ -1,3 +1,3 @@
1
1
  pub fn reply(message: &str) -> &str {
2
-
2
+ unimplemented!()
3
3
  }
@@ -65,7 +65,7 @@ to pass again. The test file is located in the `tests` directory. You can
65
65
  also remove the ignore flag from all the tests to get them to run all at once
66
66
  if you wish.
67
67
 
68
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
68
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
69
69
  haven't already, it will help you with organizing your files.
70
70
 
71
71
  ## Feedback, Issues, Pull Requests
@@ -75,7 +75,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
75
75
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
76
76
 
77
77
  [help-page]: http://exercism.io/languages/rust
78
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
78
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
79
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
79
80
 
80
81
  ## Source
81
82
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  Reading about these Rust topics may help you implement a solution.
4
4
 
5
- - Lifetimes and Structs: https://doc.rust-lang.org/book/lifetimes.html#impl-blocks
5
+ - Lifetimes and Structs: https://doc.rust-lang.org/book/second-edition/ch10-03-lifetime-syntax.html#lifetime-annotations-in-method-definitions
6
6
  - From trait: https://doc.rust-lang.org/std/convert/trait.From.html
@@ -7,7 +7,7 @@ verify that all the pairs are matched and nested correctly.
7
7
 
8
8
  Reading about these Rust topics may help you implement a solution.
9
9
 
10
- - Lifetimes and Structs: https://doc.rust-lang.org/book/lifetimes.html#impl-blocks
10
+ - Lifetimes and Structs: https://doc.rust-lang.org/book/second-edition/ch10-03-lifetime-syntax.html#lifetime-annotations-in-method-definitions
11
11
  - From trait: https://doc.rust-lang.org/std/convert/trait.From.html
12
12
 
13
13
 
@@ -30,7 +30,7 @@ to pass again. The test file is located in the `tests` directory. You can
30
30
  also remove the ignore flag from all the tests to get them to run all at once
31
31
  if you wish.
32
32
 
33
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
33
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
34
34
  haven't already, it will help you with organizing your files.
35
35
 
36
36
  ## Feedback, Issues, Pull Requests
@@ -40,7 +40,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
40
40
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
41
41
 
42
42
  [help-page]: http://exercism.io/languages/rust
43
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
43
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
44
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
44
45
 
45
46
  ## Source
46
47
 
@@ -62,7 +62,7 @@ to pass again. The test file is located in the `tests` directory. You can
62
62
  also remove the ignore flag from all the tests to get them to run all at once
63
63
  if you wish.
64
64
 
65
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
65
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
66
66
  haven't already, it will help you with organizing your files.
67
67
 
68
68
  ## Feedback, Issues, Pull Requests
@@ -72,7 +72,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
72
72
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
73
73
 
74
74
  [help-page]: http://exercism.io/languages/rust
75
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
75
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
76
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
76
77
 
77
78
  ## Source
78
79
 
@@ -37,7 +37,7 @@ to pass again. The test file is located in the `tests` directory. You can
37
37
  also remove the ignore flag from all the tests to get them to run all at once
38
38
  if you wish.
39
39
 
40
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
40
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
41
41
  haven't already, it will help you with organizing your files.
42
42
 
43
43
  ## Feedback, Issues, Pull Requests
@@ -47,7 +47,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
47
47
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
48
48
 
49
49
  [help-page]: http://exercism.io/languages/rust
50
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
50
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
51
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
51
52
 
52
53
  ## Source
53
54
 
@@ -45,7 +45,7 @@ to pass again. The test file is located in the `tests` directory. You can
45
45
  also remove the ignore flag from all the tests to get them to run all at once
46
46
  if you wish.
47
47
 
48
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
48
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
49
49
  haven't already, it will help you with organizing your files.
50
50
 
51
51
  ## Feedback, Issues, Pull Requests
@@ -55,7 +55,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
55
55
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
56
56
 
57
57
  [help-page]: http://exercism.io/languages/rust
58
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
58
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
59
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
59
60
 
60
61
  ## Source
61
62