packages feed

polysemy-plugin-0.1.0.0: polysemy-plugin.cabal

cabal-version: 1.12
name: polysemy-plugin
version: 0.1.0.0
license: BSD3
license-file: LICENSE
copyright: 2019 Sandy Maguire
maintainer: sandy@sandymaguire.me
author: Sandy Maguire
homepage: https://github.com/isovector/polysemy#readme
bug-reports: https://github.com/isovector/polysemy/issues
synopsis: Disambiguate obvious uses of effects.
description:
    Please see the README on GitHub at <https://github.com/isovector/polysemy/tree/master/polysemy-plugin#readme>
category: Polysemy
build-type: Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
    type: git
    location: https://github.com/isovector/polysemy

library
    exposed-modules:
        Polysemy.Plugin
    hs-source-dirs: src
    other-modules:
        Paths_polysemy_plugin
    default-language: Haskell2010
    default-extensions: DataKinds DeriveFunctor FlexibleContexts GADTs
                        LambdaCase PolyKinds RankNTypes ScopedTypeVariables
                        StandaloneDeriving TypeApplications TypeOperators TypeFamilies
                        UnicodeSyntax
    build-depends:
        base >=4.7 && <5,
        ghc >=8.6.3 && <8.7,
        ghc-tcplugins-extra ==0.3.*,
        polysemy >=0.1.2.0 && <0.2

test-suite polysemy-plugin-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    hs-source-dirs: test
    other-modules:
        Paths_polysemy_plugin
    default-language: Haskell2010
    default-extensions: DataKinds DeriveFunctor FlexibleContexts GADTs
                        LambdaCase PolyKinds RankNTypes ScopedTypeVariables
                        StandaloneDeriving TypeApplications TypeOperators TypeFamilies
                        UnicodeSyntax
    ghc-options: -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base >=4.7 && <5,
        ghc >=8.6.3 && <8.7,
        ghc-tcplugins-extra ==0.3.*,
        hspec >=2.6.0 && <2.7,
        polysemy >=0.1.2.0 && <0.2,
        polysemy-plugin -any