mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-10-21 18:00:35 +00:00
Initial commit
This commit is contained in:
commit
6128c16d90
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
/target
|
||||
day-*.bench.txt
|
||||
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal file
@ -0,0 +1,7 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "day-01"
|
||||
version = "0.1.0"
|
||||
37
Cargo.toml
Normal file
37
Cargo.toml
Normal file
@ -0,0 +1,37 @@
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
|
||||
members = ["day-*"]
|
||||
|
||||
[workspace.dependencies]
|
||||
glam = "0.24.2"
|
||||
itertools = "0.12.0"
|
||||
nom = "7.1.3"
|
||||
petgraph = "0.6.4"
|
||||
rayon = "1.8.0"
|
||||
tracing = "0.1.40"
|
||||
tracing-subscriber = "0.3.18"
|
||||
rstest = "0.18.2"
|
||||
rstest_reuse = "0.6.0"
|
||||
tracing-tracy = "0.10.4"
|
||||
tracy-client = "0.16.4"
|
||||
tracy-client-sys = "0.22.0"
|
||||
miette = { version = "5.10.0", features = ["fancy"] }
|
||||
thiserror = "1.0.50"
|
||||
dhat = "0.3.2"
|
||||
color-eyre = "0.6.2"
|
||||
|
||||
[profile.flamegraph]
|
||||
inherits = "release"
|
||||
debug = true
|
||||
|
||||
[profile.dhat]
|
||||
inherits = "release"
|
||||
debug = 1
|
||||
|
||||
[profile.wasm-release]
|
||||
inherits = "release"
|
||||
opt-level = "z"
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
panic = "abort"
|
||||
Loading…
Reference in New Issue
Block a user