packages feed

require-callstack-0.2.0.1: require-callstack.cabal

cabal-version:      3.0
name:               require-callstack
version:            0.2.0.1
synopsis:           Propagate HasCallStack with constraints
description:        See the README for more information about this package.
license:            MIT
license-file:       LICENSE
author:             parsonsmatt
maintainer:         parsonsmatt@gmail.com
category:           Development
build-type:         Simple
extra-doc-files:
    CHANGELOG.md
    README.md
bug-reports:     https://github.com/parsonsmatt/require-callstack/issues

source-repository head
  type:     git
  location: git://github.com/parsonsmatt/require-callstack.git


common warnings
    ghc-options: -Wall

library
    import:           warnings
    exposed-modules:
        RequireCallStack
    build-depends:
        base >= 4.12 && < 5
      , ghc-prim
    hs-source-dirs:   src
    default-language: Haskell2010

test-suite require-callstack-test
    import:           warnings
    default-language: Haskell2010
    type:             exitcode-stdio-1.0
    hs-source-dirs:   test
    main-is:          Main.hs
    build-depends:
          base 
        , require-callstack