-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
175 lines (133 loc) · 3.82 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
[package]
name = "advent_of_code"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
array-init = "2.1.0"
bitvec = "1.0.1"
dot = "0.1.4"
lazy_static = "1.4.0"
num = "0.4.1"
rand = "0.8.5"
regex = "1.7.0"
itertools = "0.12.0"
[profile.release]
debug = true
[lib]
name = "util"
path = "src/util/rust/lib.rs"
[[bin]]
name = "calorie_counting"
path = "src/twentytwentytwo/one/calorie_counting.rs"
[[bin]]
name = "rock_paper_scissors"
path = "src/twentytwentytwo/two/rock_paper_scissors.rs"
[[bin]]
name = "rucksack_reorganization"
path = "src/twentytwentytwo/three/rucksack_reorganization.rs"
[[bin]]
name = "camp_cleanup"
path = "src/twentytwentytwo/four/camp_cleanup.rs"
[[bin]]
name = "supply_stacks"
path = "src/twentytwentytwo/five/supply_stacks.rs"
[[bin]]
name = "tuning_trouble"
path = "src/twentytwentytwo/six/tuning_trouble.rs"
[[bin]]
name = "no_space_left_on_device"
path = "src/twentytwentytwo/seven/no_space_left_on_device.rs"
[[bin]]
name = "treetop_tree_house"
path = "src/twentytwentytwo/eight/treetop_tree_house.rs"
[[bin]]
name = "rope_bridge"
path = "src/twentytwentytwo/nine/rope_bridge.rs"
[[bin]]
name = "cathode_ray_tube"
path = "src/twentytwentytwo/ten/cathode_ray_tube.rs"
[[bin]]
name = "monkey_in_the_middle"
path = "src/twentytwentytwo/eleven/monkey_in_the_middle.rs"
[[bin]]
name = "hill_climbing_algorithm"
path = "src/twentytwentytwo/twelve/hill_climbing_algorithm.rs"
[[bin]]
name = "distress_signal"
path = "src/twentytwentytwo/thirteen/distress_signal.rs"
[[bin]]
name = "regolith_reservoir"
path = "src/twentytwentytwo/fourteen/regolith_reservoir.rs"
[[bin]]
name = "beacon_exclusion_zone"
path = "src/twentytwentytwo/fifteen/beacon_exclusion_zone.rs"
[[bin]]
name = "proboscidea_volcanium"
path = "src/twentytwentytwo/sixteen/proboscidea_volcanium.rs"
[[bin]]
name = "pyroclastic_flow"
path = "src/twentytwentytwo/seventeen/pyroclastic_flow.rs"
[[bin]]
name = "boiling_boulders"
path = "src/twentytwentytwo/eighteen/boiling_boulders.rs"
[[bin]]
name = "not_enough_minerals"
path = "src/twentytwentytwo/nineteen/not_enough_minerals.rs"
[[bin]]
name = "grove_positioning_system"
path = "src/twentytwentytwo/twenty/grove_positioning_system.rs"
[[bin]]
name = "monkey_math"
path = "src/twentytwentytwo/twentyone/monkey_math.rs"
[[bin]]
name = "monkey_map"
path = "src/twentytwentytwo/twentytwo/monkey_map.rs"
[[bin]]
name = "trebuchet"
path = "src/twentytwentythree/one/trebuchet.rs"
[[bin]]
name = "cube_conundrum"
path = "src/twentytwentythree/two/cube_conundrum.rs"
[[bin]]
name = "gear_ratios"
path = "src/twentytwentythree/three/gear_ratios.rs"
[[bin]]
name = "scratchcards"
path = "src/twentytwentythree/four/scratchcards.rs"
[[bin]]
name = "if_you_give_a_seed_a_fertilizer"
path = "src/twentytwentythree/five/if_you_give_a_seed_a_fertilizer.rs"
[[bin]]
name = "wait_for_it"
path = "src/twentytwentythree/six/wait_for_it.rs"
[[bin]]
name = "camel_cards"
path = "src/twentytwentythree/seven/camel_cards.rs"
[[bin]]
name = "haunted_wasteland"
path = "src/twentytwentythree/eight/haunted_wasteland.rs"
[[bin]]
name = "mirage_maintence"
path = "src/twentytwentythree/nine/mirage_maintenance.rs"
[[bin]]
name = "pipe_maze"
path = "src/twentytwentythree/ten/pipe_maze.rs"
[[bin]]
name = "cosmic_expansion"
path = "src/twentytwentythree/eleven/cosmic_expansion.rs"
[[bin]]
name = "hot_springs"
path = "src/twentytwentythree/twelve/hot_springs.rs"
[[bin]]
name = "point_of_incidence"
path = "src/twentytwentythree/thirteen/point_of_incidence.rs"
[[bin]]
name = "parabolic_reflector_dish"
path = "src/twentytwentythree/fourteen/parabolic_reflector_dish.rs"
[[bin]]
name = "lens_library"
path = "src/twentytwentythree/fifteen/lens_library.rs"
[[bin]]
name = "the_floor_will_be_lava"
path = "src/twentytwentythree/sixteen/the_floor_will_be_lava.rs"