File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ repository = "https://github.com/remi-dupre/aoc"
66license = " Apache-2.0"
77version = " 0.1.0"
88readme = " README.md"
9- keywords = [" advent of code " , " aoc" , " macro" ]
9+ keywords = [" advent" , " aoc" , " macro" ]
1010edition = " 2018"
1111
1212[dependencies ]
Original file line number Diff line number Diff line change 1818-----
1919
2020The generator and solutions for a given day must be implemented in a module
21- called ` dayX ` . Then you can simply invoke the ` aoc ::main!` macro in your
21+ called ` dayX ` . Then you can simply invoke the ` aoc_main ::main!` macro in your
2222` main.rs ` :
2323
2424``` rust
@@ -51,7 +51,7 @@ mod day1 {
5151mod day2 ;
5252mod day3 ;
5353
54- aoc :: main! {
54+ aoc_main :: main! {
5555 year 2019 ;
5656 day1 : generator => part_1 , part_2 ;
5757 day2 : generator => part_1 , part_2 , part_2_optimized ;
You can’t perform that action at this time.
0 commit comments