packages feed

fused-effects-resumable-0.1.0.0: fused-effects-resumable.cabal

cabal-version:       2.0
name:                fused-effects-resumable
version:             0.1.0.0
synopsis:            Resumable exceptions for the fused-effects ecosystem.
description:         Provides an effect and carrier capable of resuming control flow from an exceptoin handler.
homepage:            https://github.com/fused-effects/fused-effects-resumable
bug-reports:         https://github.com/fused-effects/fused-effects-resumable/issues
license:             BSD3
license-file:        LICENSE
author:              Rob Rix and Patrick Thomson
maintainer:          patrickt@github.com
copyright:           2019 Rob Rix and Patrick Thomson
category:            Control
build-type:          Simple
extra-doc-files:     README.md
                   , CHANGELOG.md
tested-with:         GHC == 8.6.4

source-repository head
  type:                git
  location:            https://github.com/fused-effects/fused-effects-resumable.git

library
  hs-source-dirs:      src
  exposed-modules:     Control.Carrier.Resumable.Either
                       Control.Carrier.Resumable.Resume
                       Control.Effect.Resumable


  build-depends:
      base           >= 4.9 && < 4.14
    , deepseq       ^>= 1.4.3
    , fused-effects ^>= 1
    , transformers   >= 0.4 && < 0.6

  ghc-options:         -Wall
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wcompat
                       -Widentities
                       -Wredundant-constraints
                       -fhide-source-paths
                       -Wmissing-export-lists
                       -Wpartial-fields

  default-language:    Haskell2010