diff options
| author | x-hgg-x <39058530+x-hgg-x@users.noreply.github.com> | 2022-03-29 11:44:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-29 11:44:06 +0200 |
| commit | 179a75a68d03ac9518dec2297fb17f91a4fc506b (patch) | |
| tree | 0117af86820ac8635243cce136f548020262648a /Cargo.toml | |
| parent | cd2b5e8e3b616e769d2c17df45f813772aa81530 (diff) | |
fix: Include exercises folder in the project structure behind a feature (#917)
closes #859
closes #913
closes #942
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -11,7 +11,7 @@ console = "0.7.7" notify = "4.0.15" toml = "0.4.10" regex = "1.1.6" -serde = {version = "1.0.10", features = ["derive"]} +serde = { version = "1.0.10", features = ["derive"] } [[bin]] name = "rustlings" @@ -21,3 +21,6 @@ path = "src/main.rs" assert_cmd = "0.11.0" predicates = "1.0.1" glob = "0.3.0" + +[features] +exercises = [] |
