-
Notifications
You must be signed in to change notification settings - Fork 4
/
twenty-four-days2015-of-hackage.cabal
154 lines (149 loc) · 5.39 KB
/
twenty-four-days2015-of-hackage.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
name: twenty-four-days2015-of-hackage
version: 0.1.0.0
synopsis: 24 Days of Hackage, 2015 edition
description: 24 Days of Hackage, 2015 edition
homepage: https://github.com/FranklinChen/twenty-four-days2015-of-hackage
license: BSD3
license-file: LICENSE
author: Franklin Chen
maintainer: franklinchen@franklinchen.com
copyright: Franklin Chen
category: Acme
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 7.10.2
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
, generated-src
exposed-modules: PCREHeavyExample
, WreqExample
, WreqCodeGolfExample
, ShouldNotTypecheckExample
, UnsafeListExample
, NonEmptyListExample
, Sort3
, MultisetExample
, SymbolicDifferentiation.AlphaSyntax
, SymbolicDifferentiation.AlphaOperatorSyntax
, SymbolicDifferentiation.OperatorSyntax
, SymbolicDifferentiation.SExp
, MonadLoopsExample
, MeetupEventsJSON
, JSONAutoTypeExample
, SortWrapper
, HintExample
, SymbolicDifferentiation.Earley
, EarleyExample
, IOSpecExample
, SafeExample
, SymbolicDifferentiation.AnsiWlPprint
, VectorExample
, VectorFusionExample
, DimensionalExample
, HoodExample
, GHoodExample
-- , HoedExample
build-depends: base >= 4.7 && < 5
, bytestring
, pcre-heavy
, wreq
, text
, lens
, aeson
, lens-aeson
, semigroups
, split
, multiset
, here
, interpolate
, file-embed
, s-cargot
, monad-loops
, json-autotype
, hint
, transformers
, ListLike
, Earley >= 0.10
, IOSpec
, safe
, ansi-wl-pprint
, vector >= 0.11
, vector-algorithms
, list-fusion-probe
, dimensional >= 1.0.1.0
, hood
, GHood
-- , Hoed
executable pcre-heavy-example
hs-source-dirs: app
main-is: PCREHeavyExampleMain.hs
default-language: Haskell2010
ghc-options: -Wall
build-depends: base >= 4 && <= 5
, pcre-heavy
executable shake-example
hs-source-dirs: app
main-is: ShakeExampleMain.hs
default-language: Haskell2010
ghc-options: -Wall -rtsopts -with-rtsopts=-I0
build-depends: base >= 4 && <= 5
, shake
, pcre-heavy
, pcre-light
, template-haskell
, strict
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
-- Hack? Easiest for rerunning tests in "stack ghci :spec"
-- and reloading.
, src
, generated-src
ghc-options: -Wall
main-is: Spec.hs
build-depends: base >= 4 && <= 5
-- Hack? Depending on library does not allow quick reload.
--, twenty-four-days2015-of-hackage
, hspec
, QuickCheck
, bytestring
, pcre-heavy
, wreq
, text
, lens
, aeson
, lens-aeson
, should-not-typecheck
, deepseq
, MissingH
, extra
, semigroups
, split
, multiset
, here
, interpolate
, file-embed
, s-cargot
, monad-loops
, json-autotype
, hint
, transformers
, ListLike
, Earley >= 0.10
, IOSpec
, safe
, ansi-wl-pprint
, vector >= 0.11
, vector-algorithms
, list-fusion-probe
, dimensional >= 1.0.1.0
, hood
, GHood
-- , Hoed
source-repository head
type: git
location: https://github.com/FranklinChen/twenty-four-days2015-of-hackage