-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (48 loc) · 1.62 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
[package]
edition = "2018"
name = "algorithm"
version = "0.1.0"
[workspace]
members = [
"aoc2021",
"aoc2022",
"codeforces/goodbye_2022"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[[bin]]
name = "binary_search"
path = "leetcode/studyplan_algorithm1/binary_search/binary_search/main.rs"
[[bin]]
name = "first_bad_version"
path = "leetcode/studyplan_algorithm1/binary_search/first_bad_version/main.rs"
[[bin]]
name = "search_insert_position"
path = "leetcode/studyplan_algorithm1/binary_search/search_insert_position/main.rs"
[[bin]]
name = "squares_of_a_sorted_array"
path = "leetcode/studyplan_algorithm1/two_pointers/squares_of_a_sorted_array/main.rs"
[[bin]]
name = "rotate_array"
path = "leetcode/studyplan_algorithm1/two_pointers/rotate_array/main.rs"
[[bin]]
name = "move_zeroes"
path = "leetcode/studyplan_algorithm1/two_pointers/move_zeroes/main.rs"
[[bin]]
name = "two_sum_ii"
path = "leetcode/studyplan_algorithm1/two_pointers/two_sum_ii/main.rs"
[[bin]]
name = "reverse_string"
path = "leetcode/studyplan_algorithm1/two_pointers/reverse_string/main.rs"
[[bin]]
name = "reverse_words_in_a_string_iii"
path = "leetcode/studyplan_algorithm1/two_pointers/reverse_words_in_a_string_iii/main.rs"
[[bin]]
name = "middle_of_the_linked_list"
path = "leetcode/studyplan_algorithm1/two_pointers/middle_of_the_linked_list/main.rs"
[[bin]]
name = "remove_nth_node_from_end_of_list"
path = "leetcode/studyplan_algorithm1/two_pointers/remove_nth_node_from_end_of_list/main.rs"
[[bin]]
name = "fibonacci_number"
path = "leetcode/dynamic_programming/fibonacci_number/main.rs"