/ docs / Exercism / rust / reverse-string / .exercism / config.json
config.json
 1  {
 2    "authors": [
 3      "coriolinus"
 4    ],
 5    "contributors": [
 6      "cbzehner",
 7      "ccouzens",
 8      "cwhakes",
 9      "efx",
10      "ErikSchierboom",
11      "hunger",
12      "lutostag",
13      "ocstl",
14      "PaulT89",
15      "petertseng",
16      "rofrol",
17      "rrredface",
18      "stringparser",
19      "TheDarkula",
20      "xakon",
21      "ZapAnton"
22    ],
23    "files": {
24      "solution": [
25        "src/lib.rs",
26        "Cargo.toml"
27      ],
28      "test": [
29        "tests/reverse_string.rs"
30      ],
31      "example": [
32        ".meta/example.rs"
33      ]
34    },
35    "blurb": "Reverse a given string.",
36    "source": "Introductory challenge to reverse an input string",
37    "source_url": "https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb"
38  }