packages feed

boots-0.1: boots.cabal

cabal-version: 1.12
name: boots
version: 0.1
license: MIT
license-file: LICENSE
copyright: 2019 Daniel YU
maintainer: leptonyu@gmail.com
author: Daniel YU
homepage: https://github.com/leptonyu/boots#readme
synopsis: IoC Monad in Haskell
description:
    Inverse of control monad used in building large application.
category: Library, Application
build-type: Simple
extra-source-files:
    README.md

library
    exposed-modules:
        Boots.Factory
    hs-source-dirs: src
    other-modules:
        Paths_boots
    default-language: Haskell2010
    default-extensions: FlexibleInstances MultiParamTypeClasses
                        GeneralizedNewtypeDeriving OverloadedStrings RecordWildCards
                        FlexibleContexts RankNTypes ScopedTypeVariables
    ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures
    build-depends:
        base >=4.10 && <5,
        exceptions >=0.10.2 && <0.11,
        mtl >=2.2.2 && <2.3

test-suite spec
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    hs-source-dirs: test src
    other-modules:
        Boots.Factory
        Paths_boots
    default-language: Haskell2010
    default-extensions: FlexibleInstances MultiParamTypeClasses
                        GeneralizedNewtypeDeriving OverloadedStrings RecordWildCards
                        FlexibleContexts RankNTypes ScopedTypeVariables
    ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures
    build-depends:
        base >=4.10 && <5,
        exceptions >=0.10.2 && <0.11,
        hspec ==2.*,
        mtl >=2.2.2 && <2.3