-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
67 lines (65 loc) · 1.43 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "rust_learn"
version = "0.1.0"
edition = "2021"
[workspace]
members = [
"hello_world",
"variable_and_function",
"number_arithmetic_operation",
"trait_rs",
"from_into",
"vec",
"more_destructuring",
"dereferencing_and_the_dot_operator",
"generics",
"more_generics",
"option",
"more_option",
"result",
"more_result",
"if_let_and_while_let",
"hash_map_and_btree_map",
"more_hash_map",
"hash_map_entry_method",
"hash_map_entry_and_hash_set",
"binary_heap",
"vecdeque",
"question_mark_operator",
"a_simple_trait",
"another_small_trait",
"trait_as_bounds",
"implementing_from",
"blanket_trait_implementations",
"the_asref_trait",
"chaining_methods",
"iterator_intro",
"iterators_and_assert_eq",
"implementing_iterator",
"intro_to_closures",
"zero_cost_abstractions",
"map_and_for_each",
"zipping_iterators",
"chars",
"filter_and_filter_map",
"ok_or_and_ok_or_else",
"map_and_and_then_for_option",
"and_or_for_option",
"any_and_all_methods",
"reverse_iterators",
"find_position_cycle",
"skip_take_fold",
"chunks_windows",
"match_indices_peekable_inspect",
"dbg_macro",
"lifetime_intro",
"more_lifetime",
"manual_debug_impl",
"interior_mutability_and_cell",
"ref_cell",
"ref_cell_again",
"",
"",
]
[dependencies]
rand = "0.8.5"