chore: remove mod.rs files and exercises feature

This commit is contained in:
mokou 2022-07-11 12:53:49 +02:00
parent bf69145bb9
commit ed0f278a8f
26 changed files with 2 additions and 114 deletions

2
Cargo.lock generated
View File

@ -459,7 +459,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]]
name = "rustlings"
version = "4.7.1"
version = "4.8.0"
dependencies = [
"argh",
"assert_cmd",

View File

@ -1,7 +1,7 @@
[package]
name = "rustlings"
version = "4.8.0"
authors = ["mokou <mokou@fastmail.com>", "Carol (Nichols || Goulding) <carol.nichols@gmail.com>"]
authors = ["Liv <mokou@fastmail.com>", "Carol (Nichols || Goulding) <carol.nichols@gmail.com>"]
edition = "2021"
[dependencies]
@ -24,6 +24,3 @@ path = "src/main.rs"
assert_cmd = "0.11.0"
predicates = "1.0.1"
glob = "0.3.0"
[features]
exercises = []

View File

@ -1,2 +0,0 @@
mod advanced_errs1;
mod advanced_errs2;

View File

@ -1,2 +0,0 @@
mod clippy1;
mod clippy2;

View File

@ -1,4 +0,0 @@
mod hashmap1;
mod hashmap2;
mod vec1;
mod vec2;

View File

@ -1,5 +0,0 @@
mod as_ref_mut;
mod from_into;
mod from_str;
mod try_from_into;
mod using_as;

View File

@ -1,3 +0,0 @@
mod enums1;
mod enums2;
mod enums3;

View File

@ -1,6 +0,0 @@
mod errors1;
mod errors2;
mod errors3;
mod errors4;
mod errors5;
mod errors6;

View File

@ -1,5 +0,0 @@
mod functions1;
mod functions2;
mod functions3;
mod functions4;
mod functions5;

View File

@ -1,3 +0,0 @@
mod generics1;
mod generics2;
mod generics3;

View File

@ -1,2 +0,0 @@
mod if1;
mod if2;

View File

@ -1,2 +0,0 @@
mod intro1;
mod intro2;

View File

@ -1,4 +0,0 @@
mod macros1;
mod macros2;
mod macros3;
mod macros4;

View File

@ -1,26 +0,0 @@
mod advanced_errors;
mod clippy;
mod collections;
mod conversions;
mod enums;
mod error_handling;
mod functions;
mod generics;
mod r#if;
mod intro;
mod macros;
mod modules;
mod move_semantics;
mod option;
mod primitive_types;
mod quiz1;
mod quiz2;
mod quiz3;
mod quiz4;
mod standard_library_types;
mod strings;
mod structs;
mod tests;
mod threads;
mod traits;
mod variables;

View File

@ -1,3 +0,0 @@
mod modules1;
mod modules2;
mod modules3;

View File

@ -1,6 +0,0 @@
mod move_semantics1;
mod move_semantics2;
mod move_semantics3;
mod move_semantics4;
mod move_semantics5;
mod move_semantics6;

View File

@ -1,3 +0,0 @@
mod option1;
mod option2;
mod option3;

View File

@ -1,6 +0,0 @@
mod primitive_types1;
mod primitive_types2;
mod primitive_types3;
mod primitive_types4;
mod primitive_types5;
mod primitive_types6;

View File

@ -1,7 +0,0 @@
mod arc1;
mod box1;
mod iterators1;
mod iterators2;
mod iterators3;
mod iterators4;
mod iterators5;

View File

@ -1,2 +0,0 @@
mod strings1;
mod strings2;

View File

@ -1,3 +0,0 @@
mod structs1;
mod structs2;
mod structs3;

View File

@ -1,3 +0,0 @@
mod tests1;
mod tests2;
mod tests3;

View File

@ -1 +0,0 @@
mod threads1;

View File

@ -1,2 +0,0 @@
mod traits1;
mod traits2;

View File

@ -1,6 +0,0 @@
mod variables1;
mod variables2;
mod variables3;
mod variables4;
mod variables5;
mod variables6;

View File

@ -1,3 +0,0 @@
#[cfg(feature = "exercises")]
#[path = "../exercises/mod.rs"]
mod exercises;