Skip to content

Commit b215211

Browse files
committed
Rename smart_pointers and conversions exercises with numeric prefix
Update rustlings-macros/info.toml and dev/Cargo.toml accordingly
1 parent 3bbc300 commit b215211

20 files changed

Lines changed: 27 additions & 27 deletions

File tree

dev/Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -150,14 +150,14 @@ bin = [
150150
{ name = "iterators4_sol", path = "../solutions/18_iterators/iterators4.rs" },
151151
{ name = "iterators5", path = "../exercises/18_iterators/iterators5.rs" },
152152
{ name = "iterators5_sol", path = "../solutions/18_iterators/iterators5.rs" },
153-
{ name = "box1", path = "../exercises/19_smart_pointers/box1.rs" },
154-
{ name = "box1_sol", path = "../solutions/19_smart_pointers/box1.rs" },
155-
{ name = "rc1", path = "../exercises/19_smart_pointers/rc1.rs" },
156-
{ name = "rc1_sol", path = "../solutions/19_smart_pointers/rc1.rs" },
157-
{ name = "arc1", path = "../exercises/19_smart_pointers/arc1.rs" },
158-
{ name = "arc1_sol", path = "../solutions/19_smart_pointers/arc1.rs" },
159-
{ name = "cow1", path = "../exercises/19_smart_pointers/cow1.rs" },
160-
{ name = "cow1_sol", path = "../solutions/19_smart_pointers/cow1.rs" },
153+
{ name = "1_box1", path = "../exercises/19_smart_pointers/1_box1.rs" },
154+
{ name = "1_box1_sol", path = "../solutions/19_smart_pointers/1_box1.rs" },
155+
{ name = "2_rc1", path = "../exercises/19_smart_pointers/2_rc1.rs" },
156+
{ name = "2_rc1_sol", path = "../solutions/19_smart_pointers/2_rc1.rs" },
157+
{ name = "3_arc1", path = "../exercises/19_smart_pointers/3_arc1.rs" },
158+
{ name = "3_arc1_sol", path = "../solutions/19_smart_pointers/3_arc1.rs" },
159+
{ name = "4_cow1", path = "../exercises/19_smart_pointers/4_cow1.rs" },
160+
{ name = "4_cow1_sol", path = "../solutions/19_smart_pointers/4_cow1.rs" },
161161
{ name = "threads1", path = "../exercises/20_threads/threads1.rs" },
162162
{ name = "threads1_sol", path = "../solutions/20_threads/threads1.rs" },
163163
{ name = "threads2", path = "../exercises/20_threads/threads2.rs" },
@@ -178,16 +178,16 @@ bin = [
178178
{ name = "clippy2_sol", path = "../solutions/22_clippy/clippy2.rs" },
179179
{ name = "clippy3", path = "../exercises/22_clippy/clippy3.rs" },
180180
{ name = "clippy3_sol", path = "../solutions/22_clippy/clippy3.rs" },
181-
{ name = "using_as", path = "../exercises/23_conversions/using_as.rs" },
182-
{ name = "using_as_sol", path = "../solutions/23_conversions/using_as.rs" },
183-
{ name = "from_into", path = "../exercises/23_conversions/from_into.rs" },
184-
{ name = "from_into_sol", path = "../solutions/23_conversions/from_into.rs" },
185-
{ name = "from_str", path = "../exercises/23_conversions/from_str.rs" },
186-
{ name = "from_str_sol", path = "../solutions/23_conversions/from_str.rs" },
187-
{ name = "try_from_into", path = "../exercises/23_conversions/try_from_into.rs" },
188-
{ name = "try_from_into_sol", path = "../solutions/23_conversions/try_from_into.rs" },
189-
{ name = "as_ref_mut", path = "../exercises/23_conversions/as_ref_mut.rs" },
190-
{ name = "as_ref_mut_sol", path = "../solutions/23_conversions/as_ref_mut.rs" },
181+
{ name = "1_using_as", path = "../exercises/23_conversions/1_using_as.rs" },
182+
{ name = "1_using_as_sol", path = "../solutions/23_conversions/1_using_as.rs" },
183+
{ name = "2_from_into", path = "../exercises/23_conversions/2_from_into.rs" },
184+
{ name = "2_from_into_sol", path = "../solutions/23_conversions/2_from_into.rs" },
185+
{ name = "3_from_str", path = "../exercises/23_conversions/3_from_str.rs" },
186+
{ name = "3_from_str_sol", path = "../solutions/23_conversions/3_from_str.rs" },
187+
{ name = "4_try_from_into", path = "../exercises/23_conversions/4_try_from_into.rs" },
188+
{ name = "4_try_from_into_sol", path = "../solutions/23_conversions/4_try_from_into.rs" },
189+
{ name = "5_as_ref_mut", path = "../exercises/23_conversions/5_as_ref_mut.rs" },
190+
{ name = "5_as_ref_mut_sol", path = "../solutions/23_conversions/5_as_ref_mut.rs" },
191191
]
192192

193193
[package]
File renamed without changes.

0 commit comments

Comments
 (0)