-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (23 loc) · 844 Bytes
/
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
[workspace]
members = [
"Introduction/Getting started/*/",
"Common Programming Concepts/Variables/*/",
"Common Programming Concepts/Data Types/*/",
"Common Programming Concepts/Functions/*/",
"Common Programming Concepts/Variables and Functions Test/*/",
"Common Programming Concepts/If/*/",
"Writing Automated Tests/Tests/*/",
"Writing Automated Tests/Tests Test/*/",
"Common Collections/Strings/*/",
"Common Collections/String Test/*/",
"Modules and Macros/Modules/*/",
"Modules and Macros/Macros/*/",
"Modules and Macros/Macros and Modules Test/*/",
"Understanding Ownership/Move Semantics/*/",
"Recoverable and Unrecoverable Errors/Error Handling/*/",
"Fearless Concurrency/Threads/*/",
"Iterators and Closures/Standard Library Types/*/"
]
exclude = [
"**/*.yaml"
]