packages feed

cruncher-types-1.0.2: cruncher-types.cabal

name:                cruncher-types
version:             1.0.2
synopsis:            Request and Response types for Eval.so's API
description:
  You are not likely to find this useful unless you are building a library for
  accessing Eval.so's new API, or working on the "Cruncher" backend.
homepage:            http://github.com/eval-so/cruncher-types
license:             BSD3
license-file:        LICENSE
author:              Ricky Elrod
maintainer:          ricky@elrod.me
copyright:           2013 - Ricky Elrod
category:            Eval.so
build-type:          Simple
cabal-version:       >=1.18

library
  exposed-modules:
    Evalso.Cruncher.FinalResult
    Evalso.Cruncher.SandboxResult
    Evalso.Cruncher.Request

  ghc-options: -Wall -O2
  hs-source-dirs: src
  default-language:    Haskell2010

  build-depends:
      base ==4.6.*
    , bytestring ==0.10.*
    , containers ==0.5.*
    , text ==0.11.*
    , aeson ==0.6.*

test-suite hlint
  hs-source-dirs: tests
  main-is: hlint.hs
  type: exitcode-stdio-1.0
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base
    , hlint >= 1.7

source-repository head
  type:     git
  location: git://github.com/eval-so/cruncher-types.git