[package] name = "advent-of-code" version = "0.1.0" edition = "2021" description = "My solutions for Advent of code 2024" [[bin]] name = "2023-01" test = false bench = false path = "days/2023/01.rs" [[bin]] name = "2023-02" test = false bench = false path = "days/2023/02.rs" [[bin]] name = "2023-03" test = false bench = false path = "days/2023/03.rs" [[bin]] name = "2023-04" test = false bench = false path = "days/2023/04.rs" [[bin]] name = "2023-05" test = false bench = false path = "days/2023/05.rs" [[bin]] name = "2023-06" test = false bench = false path = "days/2023/06.rs" [[bin]] name = "2023-07" test = false bench = false path = "days/2023/07.rs" [[bin]] name = "2023-08" test = false bench = false path = "days/2023/08.rs" [[bin]] name = "2023-09" test = false bench = false path = "days/2023/09.rs" [[bin]] name = "2023-10" test = false bench = false path = "days/2023/10.rs" [[bin]] name = "2023-11" test = false bench = false path = "days/2023/11.rs" [[bin]] name = "2023-12" test = false bench = false path = "days/2023/12.rs" [[bin]] name = "2023-13" test = false bench = false path = "days/2023/13.rs" [[bin]] name = "2023-14" test = false bench = false path = "days/2023/14.rs" [[bin]] name = "2023-15" test = false bench = false path = "days/2023/15.rs" [[bin]] name = "2023-16" test = false bench = false path = "days/2023/16.rs" [[bin]] name = "2023-17" test = false bench = false path = "days/2023/17.rs" [[bin]] name = "2023-18" test = false bench = false path = "days/2023/18.rs" [[bin]] name = "2023-19" test = false bench = false path = "days/2023/19.rs" [[bin]] name = "2023-20" test = false bench = false path = "days/2023/20.rs" [[bin]] name = "2023-21" test = false bench = false path = "days/2023/21.rs" [[bin]] name = "2023-22" test = false bench = false path = "days/2023/22.rs" [[bin]] name = "2023-23" test = false bench = false path = "days/2023/23.rs" [[bin]] name = "2023-24" test = false bench = false path = "days/2023/24.rs" [[bin]] name = "2023-25" test = false bench = false path = "days/2023/25.rs" [[bin]] name = "2024-01" test = false bench = false path = "days/2024/01.rs" [[bin]] name = "2024-02" test = false bench = false path = "days/2024/02.rs" [[bin]] name = "2024-03" test = false bench = false path = "days/2024/03.rs" [[bin]] name = "2024-04" test = false bench = false path = "days/2024/04.rs" [[bin]] name = "2024-05" test = false bench = false path = "days/2024/05.rs" [[bin]] name = "2024-06" test = false bench = false path = "days/2024/06.rs" [[bin]] name = "2024-07" test = false bench = false path = "days/2024/07.rs" [[bin]] name = "2024-08" test = false bench = false path = "days/2024/08.rs" [[bin]] name = "2024-09" test = false bench = false path = "days/2024/09.rs" [[bin]] name = "2024-10" test = false bench = false path = "days/2024/10.rs" [[bin]] name = "2024-11" test = false bench = false path = "days/2024/11.rs" [[bin]] name = "2024-12" test = false bench = false path = "days/2024/12.rs" [[bin]] name = "2024-13" test = false bench = false path = "days/2024/13.rs" [[bin]] name = "2024-14" test = false bench = false path = "days/2024/14.rs" [[bin]] name = "2024-15" test = false bench = false path = "days/2024/15.rs" [[bin]] name = "2024-16" test = false bench = false path = "days/2024/16.rs" [[bin]] name = "2024-17" test = false bench = false path = "days/2024/17.rs" [[bin]] name = "2024-18" test = false bench = false path = "days/2024/18.rs" [[bin]] name = "2024-19" test = false bench = false path = "days/2024/19.rs" [[bin]] name = "2024-20" test = false bench = false path = "days/2024/20.rs" [[bin]] name = "2024-21" test = false bench = false path = "days/2024/21.rs" [[bin]] name = "2024-22" test = false bench = false path = "days/2024/22.rs" [[bin]] name = "2024-23" test = false bench = false path = "days/2024/23.rs" [[bin]] name = "2024-24" test = false bench = false path = "days/2024/24.rs" [[bin]] name = "2024-25" test = false bench = false path = "days/2024/25.rs" [lib] name = "advent_of_code" [dependencies] num="0.4.*" log="0.4.*" thousands="0.2.*" console="0.15.*" [dependencies.advent-of-code-macros] path = "macros" [dependencies.regex] version = "1.11.*" features = [] [workspace] [workspace.dependencies]