packages feed

eros-http-0.6.0.0: eros-http.cabal

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

name:                eros-http
version:             0.6.0.0
synopsis:            JSON HTTP interface to Eros.
description:         
  This is a small program that runs an HTTP server.
  .
  Changelog
  .
  [0.6] Update to be compatible with Eros v.0.6
-- homepage:            https://eros.rockywestlabs.com/
license:             BSD3
license-file:        LICENSE
author:              Peter Harpending
maintainer:          Peter Harpending <pharpend2@gmail.com>
copyright:           2014, Peter Harpending
category:            Text
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
data-files:
  README.md

executable eros-http
  main-is:             Main.hs
  other-modules:       Paths_eros_http
  -- other-extensions:    
  build-depends:
      aeson           >=0.8   && <0.9
    , base            >=4.7   && <4.8
    , blaze-html      >=0.7   && <0.8
    , bytestring      >=0.10  && <0.11
    , eros            >=0.6   && <0.7
    , http-types      >=0.8   && <0.9
    , markdown        >=0.1   && <0.2
    , text            >=1.1   && <1.2
    , wai             >=3.0   && <3.1
    , wai-responsible >=0.0   && <0.1
    , warp            >=3.0   && <3.1
  hs-source-dirs:      src/
  default-language:    Haskell2010
  ghc-options:
    -O2
    -Wall
    -fno-warn-orphans
    -threaded