-- Initial pattern-matcher.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: pattern-matcher version: 0.1.0.0 synopsis: A library for compiling pattern-matching to decision trees description: This library implements a transformation from pattern-matching to decision trees, for use by compiler writers. It provides support for generating useful error messages, as well as efficient trees through the use of heuristics. license: BSD3 license-file: LICENSE author: Guerric Chupin maintainer: guerric.chupin@gmail.com -- copyright: category: Language build-type: Simple extra-source-files: CHANGELOG.md cabal-version: >=1.10 tested-with: GHC == 8.6.4 , GHC == 8.4.4 , GHC == 8.2.2 , GHC == 8.0.2 source-repository head type: git location: git@gitlab.com:chupin/pattern-matcher.git library exposed-modules: Language.Pattern.Compiler -- other-modules: -- other-extensions: build-depends: base >=4.9 && <5 , containers >= 0.5.6.2 && <0.7 hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall -fno-warn-name-shadowing Test-Suite test type: exitcode-stdio-1.0 main-is: Test.hs hs-source-dirs: test other-modules: Calculus build-depends: base , pattern-matcher , containers , mtl , QuickCheck >= 2 && <3 default-language: Haskell2010 -- ghc-options: -Wall