From: alex <> Date: Sun, 8 Dec 2024 04:54:30 +0000 (+0100) Subject: Compilation en mode --release X-Git-Url: https://aoc.elinar.fr/?a=commitdiff_plain;h=67c757786deb933b79a030527118eeb3eba860d0;p=aoc_2024 Compilation en mode --release --- diff --git a/Makefile b/Makefile index 6e6505d..57a9883 100644 --- a/Makefile +++ b/Makefile @@ -14,4 +14,4 @@ test-day%: # run a specific day with its input file day%: - cargo run $@ input/$@.txt + cargo run --release $@ input/$@.txt