-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
47 lines (41 loc) · 848 Bytes
/
Copy pathpackage.yaml
File metadata and controls
47 lines (41 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: aoc2025
version: 0.0.0
license: Apache-2.0
copyright: (c) 2025 Michael Adler
author: Michael Adler
maintainer: Michael Adler
ghc-options: -Wall
dependencies:
- base
- attoparsec
- protolude
- bytestring
- unordered-containers
- containers
- MemoTrie
- directory
- vector # Vector is a "better" Array
- array # Arrays are not for the faint of heart
- pretty-simple # just for debugging purposes
- disjoint-containers # day 8
- z3 # day 10, painful to use
default-extensions:
- NoImplicitPrelude
- OverloadedStrings
- MultilineStrings
- TupleSections
- LambdaCase
- RecordWildCards
executable:
main: Main.hs
source-dirs: app
dependencies:
- aoc2025
library:
source-dirs: src
tests:
spec:
defaults: hspec/hspec@main
dependencies:
- aoc2025
- QuickCheck