-
Notifications
You must be signed in to change notification settings - Fork 0
/
adventofcode.cabal
53 lines (52 loc) · 1.75 KB
/
adventofcode.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: >=1.10
name: adventofcode
version: 0.1.0.0
author: Anrock
maintainer: [email protected]
build-type: Simple
executable adventofcode
main-is: Main.hs
ghc-options: -Wall -O2 -flate-specialise -fspecialise-aggressively -fplugin=Polysemy.Plugin
default-language: Haskell2010
default-extensions: LambdaCase
, TypeApplications
, QuasiQuotes
, DataKinds
, FlexibleContexts
, GADTs
, LambdaCase
, PolyKinds
, RankNTypes
, ScopedTypeVariables
, TypeApplications
, TypeOperators
, TypeFamilies
, ImportQualifiedPost
build-depends: base
, megaparsec
, interpolate
, containers
, pureMD5
, bytestring
, array
, polysemy
, polysemy-plugin
, aeson
, scientific
, vector
, unordered-containers
, text
other-modules: Year2015.Day1.Solution
, Year2015.Day2.Solution
, Year2015.Day3.Solution
, Year2015.Day4.Solution
, Year2015.Day5.Solution
, Year2015.Day6.Solution
, Year2015.Day7.Solution
, Year2015.Day8.Solution
, Year2015.Day9.Solution
, Year2015.Day10.Solution
, Year2015.Day11.Solution
, Year2015.Day12.Solution
, Year2020.Day5.Solution
, Year2021.Day5.Solution