packages feed

marshal-contt-0.1.1.0: marshal-contt.cabal

name:                marshal-contt
version:             0.1.1.0
synopsis:            A ContT-based wrapper for Haskell-to-C marshalling functions.
description:         See <https://github.com/typedrat/marshal-contt/blob/master/README.md>.
homepage:            https://github.com/typedrat/marshal-contt
bug-reports:         https://github.com/typedrat/marshal-contt/issues
license:             MPL-2.0
license-file:        LICENSE
cabal-version:       1.24
build-type:          Simple
author:              Alexis Williams
maintainer:          alexis@typedr.at
copyright:           (c) 2019 Alexis Williams
category:            Foreign
extra-source-files:  CHANGELOG.md

library
  exposed-modules:     Foreign.Marshal.ContT
  build-depends:       base        >= 4.9       && < 5
                     , mtl         >= 2.2       && < 2.3
                     , bytestring  >= 0.10.10.0 && < 0.11
                     , lens        >= 4.16      && < 4.19
  ghc-options:         -Wall
  hs-source-dirs:      src
  default-language:    Haskell2010
  default-extensions:  FlexibleInstances
                     , RankNTypes
                     , ScopedTypeVariables
                     , TypeSynonymInstances