name: language-thrift version: 0.8.0.0 cabal-version: >=1.10 build-type: Simple license: BSD3 license-file: LICENSE maintainer: Abhinav Gupta homepage: https://github.com/abhinav/language-thrift synopsis: Parser and pretty printer for the Thrift IDL format. description: This package provides a parser and pretty printer for the . category: Language author: Abhinav Gupta extra-source-files: README.md CHANGES.md examples/*.hs test/data/*.txt source-repository head type: git location: git://github.com/abhinav/language-thrift.git library exposed-modules: Language.Thrift.Parser Language.Thrift.Pretty Language.Thrift.Types build-depends: base >=4.7 && <4.9, ansi-wl-pprint >=0.6 && <0.7, megaparsec >=4.0 && <5.0, text >=1.2, transformers -any default-language: Haskell2010 other-modules: Language.Thrift.Internal.Types ghc-options: -Wall test-suite spec type: exitcode-stdio-1.0 main-is: Main.hs build-depends: base -any, ansi-wl-pprint -any, hspec >=2.0, hspec-discover >=2.1, megaparsec -any, QuickCheck >=2.5, text -any, language-thrift -any default-language: Haskell2010 hs-source-dirs: test other-modules: Language.Thrift.Arbitrary Language.Thrift.ParserSpec Language.Thrift.TypesSpec Spec TestUtils ghc-options: -Wall