packages feed

mustache-haskell-0.1.0.2: mustache-haskell.cabal

-- Initial text-mustache.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                mustache-haskell 
version:             0.1.0.2
synopsis:            Straight implementation of mustache templates
description:         Straight implementation of mustache templates 
homepage:            https://github.com/danchoi/mustache-haskell
license:             MIT
license-file:        LICENSE
author:              Daniel Choi
maintainer:          dhchoi@gmail.com
-- copyright:           
category:            Text
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library 
  default-language: Haskell2010
  hs-source-dirs: .
  exposed-modules:
      Text.Mustache.Types
      Text.Mustache
  other-modules:
      Text.Mustache.Parse
  build-depends:       base >=4.7 && <4.8
                     , aeson
                     , text
                     , parsec
                     , transformers
                     , pretty-show
                     , aeson
                     , unordered-containers
                     , vector
                     , scientific >=0.3.0.0 && <0.4.0.0
                     , directory
                     , bytestring


executable mus
  main-is:             Main.hs
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.7 && <4.8
                     , aeson
                     , text
                     , mustache-haskell
                     , parsec
                     , directory
                     , transformers
                     , pretty-show
                     , bytestring
                     , aeson
                     , unordered-containers
                     , vector
                     , scientific
                     , directory
                     , optparse-applicative >=0.11.0 && <0.12.0
  default-language:    Haskell2010