cabal-version: 2.4 name: ghc-hs-meta version: 0.1.1.0 build-type: Simple author: Zachary Wood maintainer: zac.wood@hey.com license: BSD-3-Clause license-files: LICENSE LICENSE-PyF synopsis: Translate Haskell source to Template Haskell expression description: Translate from Haskell source code to Template Haskell expressions using the GHC parser category: ghc,template-haskell tested-with: GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.1 extra-source-files: CHANGELOG.md README.md library exposed-modules: Language.Haskell.Meta.Parse Language.Haskell.Meta.Settings Language.Haskell.Meta.Translate hs-source-dirs: src default-extensions: TemplateHaskell LambdaCase ghc-options: -Wall build-depends: base >= 4.14 && <4.18 , ghc >= 8.10.7 && < 9.5 , ghc-boot >= 8.10.7 && < 9.5 , template-haskell >= 2.16.0 && < 2.20 , bytestring >= 0.10 && < 0.12 default-language: Haskell2010 test-suite tests type: exitcode-stdio-1.0 main-is: Main.hs default-language: Haskell2010 default-extensions: TemplateHaskell hs-source-dirs: test build-depends: base , template-haskell , ghc , ghc-boot , hspec , bytestring , ghc-hs-meta source-repository head type: git location: https://github.com/zacwood9/ghc-hs-meta