forked from jetbrains-academy/rustlings-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (27 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[workspace]
members = [
"Introduction/Getting started/*/",
"Common Programming Concepts/Variables/*/",
"Common Programming Concepts/Data Types/*/",
"Common Programming Concepts/Functions/*/",
"Common Programming Concepts/Variables, Functions and If Test/*/",
"Common Programming Concepts/If/*/",
"Generic Types, Traits and Lifetime/Generic Types, Traits and Lifetime/*/",
"Writing Automated Tests/Tests/*/",
"Writing Automated Tests/Tests Test/*/",
"Common Collections/Strings/*/",
"Common Collections/String Test/*/",
"Structs/Structs/*/",
"Enums/Enums and Pattern Matching/*/",
"Modules and Macros/Modules/*/",
"Modules and Macros/Macros/*/",
"Modules and Macros/Modules and Macros Test/*/",
"Understanding Ownership/Move Semantics/*/",
"Type Conversions/Type Conversions/*/",
"Recoverable and Unrecoverable Errors/Error Handling/*/",
"Fearless Concurrency/Threads/*/",
"Iterators and Closures/Standard Library Types/*/"
]
exclude = [
"**/*.yaml"
]