summaryrefslogtreecommitdiff
path: root/Pesto.cabal
blob: ee349e778212a22e0946ec903efe2ea4ab7a5944 (plain)
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
-- Initial Pesto.cabal generated by cabal init.  For further documentation,
--  see http://haskell.org/cabal/users-guide/

name:                Pesto
version:             0.1.0.0
-- synopsis:            
-- description:         
--license:             CC0
--license-file:        LICENSE
author:              Lars-Dominik Braun
maintainer:          lars@6xq.net
-- copyright:           
category:            Codec
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Codec.Pesto, Codec.Pesto.Parse, Codec.Pesto.Graph, Codec.Pesto.Lint, Codec.Pesto.Serialize
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.6 && <4.7, HUnit, parsec
  hs-source-dirs:      src
  default-language:    Haskell2010

executable pesto
  main-is: Main.lhs
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:       base >=4.6 && <4.7, HUnit, parsec

test-suite pesto-test
  type: exitcode-stdio-1.0
  main-is: Test.lhs
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:       base >=4.6 && <4.7, Pesto, HUnit, parsec

executable pesto-doc
  main-is: Doc.lhs
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:       base >=4.6 && <4.7, pandoc >=1.14, highlighting-kate, blaze-html, filepath, containers