-- Initial dictparser.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: dictparser version: 0.1.1.0 synopsis: Parsec parsers for the DICT format produced by dictfmt -t description: Parsec parsers for DICT license: BSD3 license-file: LICENSE author: Mark Wotton maintainer: mwotton@gmail.com Homepage: http://github.com/mwotton/dictparser Bug-Reports: http://github.com/mwotton/dictparser/issues copyright: Mark Wotton, 2013 category: Language build-type: Simple cabal-version: >=1.10 source-repository head type: git location: git://github.com/mwotton/dictparser.git library exposed-modules: NLP.DictParser, NLP.DictParser.Internal -- other-modules: -- other-extensions: build-depends: base <5, parsec hs-source-dirs: src default-language: Haskell2010 test-suite tests type: exitcode-stdio-1.0 ghc-options: -Wall -threaded hs-source-dirs: test/ main-is: Spec.hs default-language: Haskell2010 build-depends: base <5, dictparser, hspec, parsec executable dictparser main-is: src/main.hs default-language: Haskell2010 build-depends: base, dictparser, parsec