haskell-stack-trace-plugin/haskell-stack-trace-plugin.cabal

42 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-12-07 09:07:07 +03:00
name: haskell-stack-trace-plugin
version: 0.1.0.1
2018-12-07 09:31:09 +03:00
synopsis: haskell-stack-trace-plugin
description: This plugin allow implicitly add HasCallStack class to every top-level function for all module. Hence, we can to get completely continuous call stack.
2018-12-07 09:13:06 +03:00
homepage: https://github.com/waddlaw/haskell-stack-trace-plugin
bug-reports: https://github.com/waddlaw/haskell-stack-trace-plugin/issues
2018-12-07 09:07:07 +03:00
license: MIT
license-file: LICENSE
author: Shinya Yamaguchi
maintainer: ingronze@gmail.com
2020-01-18 05:35:10 +03:00
copyright: 2018-2020 Shinya Yamaguchi
2018-12-07 09:13:06 +03:00
category: Compiler Plugin, Development, Debug
2018-12-07 09:07:07 +03:00
build-type: Simple
2018-12-07 09:13:06 +03:00
extra-source-files: CHANGELOG.md, Readme.md
2018-12-07 09:07:07 +03:00
cabal-version: >=1.10
2018-12-07 09:13:06 +03:00
tested-with: GHC == 8.6.2
source-repository head
type: git
location: git://github.com/waddlaw/haskell-stack-trace-plugin
2018-12-07 09:07:07 +03:00
library
hs-source-dirs: src
build-depends:
base >=4.12 && <4.13,
ghc>=8.6.2 && <8.6.6
2018-12-07 09:07:07 +03:00
exposed-modules:
StackTrace.Plugin
default-language: Haskell2010
executable example
main-is: Main.hs
hs-source-dirs: example
default-language: Haskell2010
ghc-options:
-fplugin=StackTrace.Plugin
build-depends:
base >=4.12 && <4.13,
haskell-stack-trace-plugin