packages feed

debug-0.0.1: debug.cabal

cabal-version:      >= 1.18
build-type:         Simple
name:               debug
version:            0.0.1
license:            BSD3
license-file:       LICENSE
category:           Development, Debugging
author:             Neil Mitchell <ndmitchell@gmail.com>
maintainer:         Neil Mitchell <ndmitchell@gmail.com>
copyright:          Neil Mitchell 2017
synopsis:           Simple trace-based debugger
description:
    An easy to use debugger for viewing function calls and intermediate variables.
    To use, annotate the function under test, run the code, and view the generated web page.
    Full usage instructions are at "Debug".
homepage:           https://github.com/ndmitchell/debug
bug-reports:        https://github.com/ndmitchell/debug/issues
tested-with:        GHC==8.2.1, GHC==8.0.2, GHC==7.10.3
extra-doc-files:
    CHANGES.txt
    README.md

data-files:
    html/debug.html
    html/debug.js

source-repository head
    type:     git
    location: https://github.com/ndmitchell/debug.git

library
    default-language: Haskell2010
    hs-source-dirs:   src
    build-depends:
        base == 4.*,
        ghc-prim,
        extra,
        containers,
        directory,
        template-haskell,
        open-browser,
        uniplate,
        js-jquery

    exposed-modules:
        Debug
        Debug.Record

    other-modules:
        Debug.Variables
        Paths_debug

test-suite debug-test
    default-language: Haskell2010
    type: exitcode-stdio-1.0
    main-is: Main.hs
    hs-source-dirs: test

    build-depends:
        base == 4.*,
        debug