-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvent-of-code.cabal
31 lines (28 loc) · 1.03 KB
/
advent-of-code.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
-- Initial advent-of-code.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: advent-of-code
version: 0.1.0.0
-- synopsis:
-- description:
license: PublicDomain
author: Peter
maintainer: peter@zortaniac.org
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
executable aoc
main-is: Main.hs
other-modules: Utils, Day1, Day2, Day3, Day4, Day5, Day6, Day7, Day8, Day9, Day10, Day11, Day12
, Day13, Day14, Day15, Day16, Day17, Day18, Day19, Day20, Day21, Day22, Day23, Day24, Day25
-- other-extensions:
build-depends: base >=4.12 && <4.13
, parsec
, sort
, grid
, vector
, containers
, hashtables
, array
hs-source-dirs: src
default-language: Haskell2010