packages feed

exceptiot-0.0.1.0: exceptiot.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack

name:           exceptiot
version:        0.0.1.0
synopsis:       ExceptT, but uses IO instead of Either
description:    Please see the README on Github at <https://github.com/parsonsmatt/exceptiot#readme>
category:       Control
homepage:       https://github.com/parsonsmatt/exceptiot#readme
bug-reports:    https://github.com/parsonsmatt/exceptiot/issues
author:         Matt Parsons
maintainer:     parsonsmatt@gmail.com
copyright:      2018 Matt Parsons
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    changelog.md

source-repository head
  type: git
  location: https://github.com/parsonsmatt/exceptiot

library
  exposed-modules:
      Control.Monad.Except.Catch
      Control.Monad.Except.IO
  other-modules:
      Paths_exceptiot
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat
  build-depends:
      base >=4.13 && <5
    , exceptions
    , mtl
    , unliftio
    , unliftio-core
  default-language: Haskell2010

test-suite exceptiot-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_exceptiot
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  build-tool-depends:
      hspec-discover:hspec-discover
  build-depends:
      base >=4.13 && <5
    , exceptions
    , exceptiot
    , hspec
    , mtl
    , unliftio
    , unliftio-core
  default-language: Haskell2010