packages feed

bound-gen-0.1.0.0: bound-gen.cabal

name:                bound-gen
version:             0.1.0.0
synopsis:            Unwrap Scope's with globally fresh values
description:
            It's quite common when working with bound to need to unwrap a @Scope@.
            In order to ensure that this can be done safely, without shadowing
            any existing free variables, @bound-gen@ glues @monad-gen@'s fresh
            value monad into @bound@.
license:             MIT
license-file:        LICENSE
author:              Danny Gratzer
maintainer:          jozefg@cmu.edu
category:            Compilers/Interpreters
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
source-repository head
  type: git
  location: http://github.com/jozefg/bound-gen
library
  exposed-modules:     Bound.Unwrap
  build-depends:       base >=4.0 && < 5
                     , bound
                     , monad-gen >= 0.3
                     , mtl >= 2
  hs-source-dirs:      src
  default-language:    Haskell2010