-- Initial poly-cont.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: poly-cont version: 0.1.0.0 synopsis: Poly-kinded continuations description: Poly-kinded versions of @Cont@ and @ContT@ from "Control.Monad.Trans.Cont". Currently, @Cont@ is not defined in terms of "ContT". When unlifted newtypes become available, that may change. license: BSD3 license-file: LICENSE author: David Feuer maintainer: David.Feuer@gmail.com copyright: 2018 David Feuer category: Control build-type: Simple extra-source-files: ChangeLog.md cabal-version: >=1.10 library exposed-modules: Control.Monad.PolyCont , Control.Monad.Trans.PolyCont other-extensions: FlexibleInstances , MultiParamTypeClasses , ScopedTypeVariables , Trustworthy , TypeFamilies , TypeInType , TypeOperators -- We'd really like to give a base bound of 4.10, but -- GHC 8.2.2 panics on this for some reason. build-depends: base >=4.11 && <5, transformers, mtl >= 2.0 default-language: Haskell2010