diff options
Diffstat (limited to '2023/Cargo.toml')
| -rw-r--r-- | 2023/Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/2023/Cargo.toml b/2023/Cargo.toml index 87f7902..98c23a7 100644 --- a/2023/Cargo.toml +++ b/2023/Cargo.toml @@ -5,6 +5,11 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[profile.release] +opt-level = 3 + +[dependencies] + [[bin]] name = "day01" path = "day01.rs" @@ -104,5 +109,3 @@ path = "/day24.rs" [[bin]] name = "day25" path = "day25.rs" - -[dependencies] |
