forked from jetbrains-academy/rustlings-course
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
45 lines (43 loc) · 1.92 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[workspace]
members = [
"Introduction/Getting started/*/",
"Common Programming Concepts/Variables/*/",
"Common Programming Concepts/Basic Data Types/*/",
"Common Programming Concepts/Functions/*/",
"Common Programming Concepts/Variables, Functions, and Conditions Test/*/",
"Common Programming Concepts/Conditions/*/",
"Common Programming Concepts/Repetitions/*/",
"Common Programming Concepts/Tuples and Arrays/*/",
"Modules/Modules/*/",
"Understanding Ownership/What is ownership/*/",
"Understanding Ownership/References and Borrowing/*/",
"Understanding Ownership/The Slice Type/*/",
"Structs, Methods, Enums, and Pattern Matching/Structs/*/",
"Structs, Methods, Enums, and Pattern Matching/Structs with Methods/*/",
"Structs, Methods, Enums, and Pattern Matching/Enums/*/",
"Structs, Methods, Enums, and Pattern Matching/Pattern Matching/*/",
"Common Collections/Vectors/*/",
"Common Collections/Hashmaps/*/",
"Common Collections/Strings/*/",
"Error Handling/Error Handling/*/",
"Error Handling/Errors Primer/*/",
"Generic Types, Traits, and Lifetime/Intro/*/",
"Generic Types, Traits, and Lifetime/Generic Data Types/*/",
"Generic Types, Traits, and Lifetime/Traits/*/",
"Generic Types, Traits, and Lifetime/Lifetimes/*/",
"Writing Automated Tests/Running and Organizing Tests/*/",
"Writing Automated Tests/How to Write Tests/*/",
"Standard Library Types/Iterators/*/",
"Standard Library Types/Smart Pointers/*/",
"Standard Library Types/Type Conversions/*/",
"Standard Library Types/Closures/*/",
"Fearless Concurrency/Using Threads to Run Code Simultaneously/*/",
"Fearless Concurrency/Using Message Passing to Transfer Data Between Threads/*/",
"Fearless Concurrency/Shared-State Concurrency/*/",
"Macros/Intro/*/",
"Macros/Declarative Macros/*/",
"Macros/Procedural Macros/*/",
]
exclude = [
"**/*.yaml"
]