projects
/
advent_of_code_2023.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
First day
[advent_of_code_2023.git]
/
Cargo.toml
1
[package]
2
name = "advent_of_code_2023"
3
version = "0.1.0"
4
authors = ["Greg Burri <greg.burri@gmail.com>"]
5
edition = "2021"
6
7
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9
[dependencies]
10
itertools = "0.10"
11
regex = "1"
12
clap = { version = "4", features = ["derive"] }
13
rayon = "1.6"
14
15
[profile.release]
16
opt-level = 3
17
lto = true
18
codegen-units = 1