File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
scaffold = "run --bin scaffold -- "
3
3
download = "run --bin download -- "
4
4
5
- day = "run --bin"
5
+ solve = "run --bin"
6
6
all = "run"
Original file line number Diff line number Diff line change @@ -76,8 +76,8 @@ Puzzle inputs are not checked into git. [Reasoning](https://old.reddit.com/r/adv
76
76
### Run solutions for a day
77
77
78
78
``` sh
79
- # example: `cargo day 01`
80
- cargo day < day>
79
+ # example: `cargo solve 01`
80
+ cargo solve < day>
81
81
82
82
# output:
83
83
# Running `target/debug/01`
@@ -90,7 +90,7 @@ cargo day <day>
90
90
# 9 (elapsed: 33.18µs)
91
91
```
92
92
93
- ` day ` is an alias for ` cargo run --bin ` . To run an optimized version for benchmarking, append the ` --release ` flag.
93
+ ` solve ` is an alias for ` cargo run --bin ` . To run an optimized version for benchmarking, append the ` --release ` flag.
94
94
95
95
Displayed _ timings_ show the raw execution time of your solution without overhead (e.g. file reads).
96
96
You can’t perform that action at this time.
0 commit comments