-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayground.cabal
88 lines (83 loc) · 2.15 KB
/
playground.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
cabal-version: 2.4
-- Initial package description 'playground.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: playground
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Haskell-jp
maintainer: Haskell-jp
-- copyright:
-- category:
extra-source-files: CHANGELOG.md, README.md
library
exposed-modules: Pitfall
, Calc.Base
, Calc.TTG
, UserData.Types
, Generics.FieldName
, Crypto.SSH.PubKey
, Strictness.Fold
, Streaming.Experimental.Feeder
, Streaming.Experimental.Predator
, Extensible.Eff
, Extensible.NamedEff
, Extensible.GetOpt
, Extensible.ReusableField
-- other-modules:
-- other-extensions:
ghc-options: -Wall
build-depends: base
, text
, aeson
, bytestring
, double-conversion
, memory
, cryptonite
, transformers
, mtl
, monad-skeleton
, extensible
, extensible-skeleton
, lens
default-language: Haskell2010
benchmark benchmark
type: exitcode-stdio-1.0
main-is: benchmark.hs
ghc-options: -O2
hs-source-dirs: benchmarks
build-depends: base, criterion, pipes, machines, conduit, conduit-combinators, feeders, iteratee, boombox, extensible
default-language: Haskell2010
buildable: False
executable cbor-tool
hs-source-dirs: app
main-is: cbor-tool.hs
ghc-options: -Wall
build-depends: base
, cborg
, time
, text
, bytestring
, directory
, lens
, prettyprinter
, prettyprinter-ansi-terminal
default-language: Haskell2010
executable harvester
hs-source-dirs: app
main-is: harvester.hs
ghc-options: -O2 -Wall
build-depends: base
, prettyprinter
, prettyprinter-ansi-terminal
, trifecta
, foldl
, parsers
, containers
, comonad
, split
default-language: Haskell2010