-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 812 Bytes
/
Cargo.toml
File metadata and controls
31 lines (29 loc) · 812 Bytes
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
[workspace]
members = [
# Problems
"problems/tutorial/add",
"problems/basics/fibonacci",
"problems/basics/palindrome",
"problems/basics/prime_numbers",
"problems/memory/add_references",
"problems/memory/where_k_th_ordinal_element_greater",
"problems/memory/flatten",
"problems/memory/kolhoz_hashmap",
"problems/structs/lru_cache",
"problems/structs/trust",
"problems/structs/minmax_queue",
"problems/cargo/cargo",
"problems/iterators/add2",
"problems/iterators/div3",
"problems/iterators/flatten2",
"problems/iterators/take_n",
"problems/iterators/split",
"problems/threads/threadpool",
"problems/threads/sequential",
"problems/net/roshambo",
"problems/net/chat",
# Tools
"tools/rover",
# Additional
"",
]