-- Initial easyjson.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: easyjson version: 0.1.0.0 synopsis: Haskell JSON library with an emphasis on simplicity, minimal dependencies, and ease of use. -- description: homepage: https://github.com/thinkpad20/easyjson license: MIT license-file: LICENSE author: Allen Nelson maintainer: ithinkican@gmail.com -- copyright: category: Text build-type: Simple -- extra-source-files: cabal-version: >=1.10 library exposed-modules: Text.EasyJson other-modules: Text.EasyJson.AST, Text.EasyJson.Combinators, Text.EasyJson.Parser other-extensions: OverloadedStrings, OverloadedLists, LambdaCase build-depends: base >=4.7 && <4.8, parsec, text, unordered-containers, vector, mtl hs-source-dirs: src default-language: Haskell2010