advent-of-code-2024/package.yaml

68 lines
937 B
YAML
Raw Normal View History

2024-11-26 20:34:30 +01:00
name: aoc24
2024-12-07 19:14:51 +01:00
ghc-options: -Wall -threaded
2024-11-26 20:34:30 +01:00
default-extensions:
- OverloadedStrings
dependencies:
- base == 4.*
2024-12-07 19:14:51 +01:00
- algebraic-graphs
- async
2024-11-26 20:34:30 +01:00
- attoparsec
- bytestring
- containers
2024-12-07 19:14:51 +01:00
- hashable
2024-12-11 15:54:25 +01:00
- linear
2024-12-07 19:14:51 +01:00
- matrix
- parallel
2024-12-14 20:42:11 +01:00
- recursion-schemes
2024-12-07 19:14:51 +01:00
- safe
2024-12-01 11:59:54 +01:00
- scientific
2024-12-11 15:54:25 +01:00
- split
2024-12-07 19:14:51 +01:00
- text
- unliftio
- unordered-containers
2024-12-04 12:00:42 +01:00
- utility-ht
2024-12-07 19:14:51 +01:00
- vector
2024-11-26 20:34:30 +01:00
executables:
aoc24:
main: Main.hs
dependencies:
- aoc24
2024-12-07 19:14:51 +01:00
aoc24-debug:
main: Main.hs
2024-12-11 09:27:50 +01:00
ghc-options: -Wall -threaded -rtsopts -prof #-fprof-auto
2024-12-07 19:14:51 +01:00
dependencies:
- aoc24
2024-11-26 20:34:30 +01:00
library:
source-dirs: src
exposed-modules:
- Day1
2024-12-03 21:11:13 +01:00
- Day2
2024-12-03 21:09:59 +01:00
- Day3
2024-12-04 12:00:42 +01:00
- Day4
2024-12-06 12:05:14 +01:00
- Day5
2024-12-07 19:14:51 +01:00
- Day6
2024-12-11 09:27:50 +01:00
- Day7
2024-12-11 15:54:25 +01:00
- Day8
2024-12-13 07:13:06 +01:00
- Day9
2024-12-14 20:42:11 +01:00
- Day10
2024-11-26 20:34:30 +01:00
# - Day11
# - Day12
# - Day13
# - Day14
# - Day15
# - Day16
# - Day17
# - Day18
# - Day19
# - Day20
# - Day21
# - Day22
# - Day23
# - Day24
# - Day25