Trying out different data structures for day 11, seeing if any improve matters
[advent-of-code-16.git] / adventofcode1611 / adventofcode1611.cabal
1 name: adventofcode1611
2 version: 0.1.0.0
3 synopsis: Initial project template from stack
4 description: Please see README.md
5 homepage: https://git.njae.me.uk/?p=advent-of-code-16.git;a=blob_plain;f=README.html
6 license: BSD3
7 license-file: LICENSE
8 author: Neil Smith
9 maintainer: noone@njae.me.uk
10 copyright: 2016 Neil Smith
11 category: None
12 build-type: Simple
13 extra-source-files: README.md
14 cabal-version: >=1.10
15
16 library
17 hs-source-dirs: src
18 build-depends: base >= 4.7 && < 5
19 default-language: Haskell2010
20
21 executable advent11
22 hs-source-dirs: app
23 main-is: advent11.hs
24 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
25 build-depends: base
26 , adventofcode16
27 default-language: Haskell2010
28
29 executable advent11a
30 hs-source-dirs: app
31 main-is: advent11a.hs
32 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
33 build-depends: base
34 , adventofcode16
35 default-language: Haskell2010
36
37 executable advent11h
38 hs-source-dirs: app
39 main-is: advent11h.hs
40 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
41 build-depends: base
42 , adventofcode16
43 default-language: Haskell2010
44
45 executable advent11p
46 hs-source-dirs: app
47 main-is: advent11p.hs
48 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
49 build-depends: base
50 , adventofcode16
51 , pqueue
52 default-language: Haskell2010
53
54 executable advent11ps
55 hs-source-dirs: app
56 main-is: advent11ps.hs
57 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
58 build-depends: base
59 , adventofcode16
60 , pqueue
61 , hashable
62 , containers
63 , unordered-containers
64 default-language: Haskell2010
65
66 executable advent11psm
67 hs-source-dirs: app
68 main-is: advent11psm.hs
69 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
70 build-depends: base
71 , adventofcode16
72 , pqueue
73 , hashable
74 , containers
75 , unordered-containers
76 default-language: Haskell2010
77
78 executable advent11psmh
79 hs-source-dirs: app
80 main-is: advent11psmh.hs
81 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
82 build-depends: base
83 , adventofcode16
84 , pqueue
85 , hashable
86 , containers
87 , unordered-containers
88 default-language: Haskell2010
89
90 test-suite adventofcode1611-test
91 type: exitcode-stdio-1.0
92 hs-source-dirs: test
93 main-is: Spec.hs
94 build-depends: base
95 , adventofcode1611
96 , adventofcode16
97 , split
98 ghc-options: -threaded -rtsopts -with-rtsopts=-N
99 default-language: Haskell2010
100
101 source-repository head
102 type: git
103 location: git@git.njae.me.uk:advent-of-code-16