-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaoc2024.cabal
53 lines (43 loc) · 1.04 KB
/
aoc2024.cabal
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
48
49
50
51
52
53
cabal-version: 3.0
name: aoc2024
version: 0.1.0.0
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: ser
maintainer: [email protected]
-- copyright:
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
library
import: warnings
-- exposed-modules:
other-modules:
Shared.Matrix
Shared.Matrix.Operators
Shared.Matrix.Types
Day1.Solution
Day2.Solution
Day3.Solution
Day4.Solution
Day5.Solution
Day6.Solution
Day7.Solution
default-extensions:
LambdaCase
OverloadedStrings
-- other-extensions:
build-depends:
, array >=0.5.6 && <0.6
, base ^>=4.18.2.0
, containers >=0.6.7 && <0.7
, megaparsec >=9.7.0 && <9.8
, mtl >=2.3.1 && <2.4
, optics-core >=0.4.1 && <0.5
, text >=2.0.2 && <2.1
hs-source-dirs: src
default-language: GHC2021