packages feed

world-peace-1.0.2.0: world-peace.cabal

name:                world-peace
version:             1.0.2.0
synopsis:            Open Union and Open Product Types
description:         Please see <https://github.com/cdepillabout/world-peace#readme README.md>.
homepage:            https://github.com/cdepillabout/world-peace
license:             BSD3
license-file:        LICENSE
author:              Dennis Gosnell
maintainer:          cdep.illabout@gmail.com
copyright:           2017-2018 Dennis Gosnell
category:            Data
build-type:          Simple
extra-source-files:  CHANGELOG.md
                   , README.md
                   , stack.yaml
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.WorldPeace
                     , Data.WorldPeace.Internal
                     , Data.WorldPeace.Internal.Prism
                     , Data.WorldPeace.Product
                     , Data.WorldPeace.Union
  build-depends:       base >= 4.9 && < 5
                     , aeson
                     , deepseq
                     , profunctors
                     , tagged
  default-language:    Haskell2010
  ghc-options:         -Wall -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction
  other-extensions:    QuasiQuotes
                     , TemplateHaskell

test-suite world-peace-doctest
  type:                exitcode-stdio-1.0
  main-is:             DocTest.hs
  hs-source-dirs:      test
  build-depends:       base
                     , doctest
                     , Glob
                     , text
  default-language:    Haskell2010
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N

test-suite world-peace-test
  type:                exitcode-stdio-1.0
  main-is:             Spec.hs
  other-modules:       Test.TypeErrors
  hs-source-dirs:      test
  build-depends:       base
                     , tasty
                     , tasty-hunit
                     , should-not-typecheck
                     , world-peace
  default-language:    Haskell2010
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction

source-repository head
  type:     git
  location: git@github.com:cdepillabout/world-peace.git