-
Notifications
You must be signed in to change notification settings - Fork 0
/
workhs.cabal
65 lines (63 loc) · 2.13 KB
/
workhs.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
name: workhs
version: 0.1.0.0
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >=1.18
library
exposed-modules: Workhs
build-depends: aeson
, ansi-terminal
, base >=4 && <5
, async
, bytestring
, cheapskate
, cheapskate-terminal
, conduit
, conduit-extra
, data-default
, directory
, filepath >= 1.4.0.0
, frontmatter
, here
, lens >= 4.12.3
, lens-aeson
, list-prompt
, process
, resourcet >= 1.1.7
, template-haskell
, temporary
, text
, th-lift-instances
, transformers >= 0.4.2.0
, unordered-containers
hs-source-dirs: src
ghc-options: -O2 -threaded
default-language: Haskell2010
executable learnyouhaskell
main-is: LearnYouHaskell.hs
build-depends: aeson
, ansi-terminal
, base >=4 && <5
, bytestring
, cheapskate
, cheapskate-terminal
, conduit
, conduit-extra
, directory
, filepath >= 1.4.0.0
, frontmatter
, here
, lens >= 4.12.3
, lens-aeson
, process
, resourcet >= 1.1.7
, template-haskell
, temporary
, th-lift-instances
, transformers >= 0.4.2.0
, unordered-containers
, workhs
hs-source-dirs: bin
ghc-options: -O2 -threaded
default-language: Haskell2010