summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorx-hgg-x <39058530+x-hgg-x@users.noreply.github.com>2022-03-29 11:44:06 +0200
committerGitHub <noreply@github.com>2022-03-29 11:44:06 +0200
commit179a75a68d03ac9518dec2297fb17f91a4fc506b (patch)
tree0117af86820ac8635243cce136f548020262648a /Cargo.toml
parentcd2b5e8e3b616e769d2c17df45f813772aa81530 (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.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3003269..4761c9a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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 = []