1cabal-version: 3.42name: qute-syntax3version: 0.1.04synopsis: This package provides a parser for the QBE intermediate language.5description:6 This library provides a parser for the [QBE intermediate language](https://c9x.me/compile/)7 and algebraic data types to represent various QBE constructs. This package is the foundation8 of the [Qute](https://hackage.haskell.org/package/qute) software analysis framework.9license: GPL-3.0-only AND BSD-2-Clause AND MIT10-- license-file:11author: Sören Tempel12maintainer: soeren+hackage@soeren-tempel.net13-- copyright:14category: Language15build-type: Simple16homepage: https://git.8pit.net/qute17bug-reports: https://github.com/nmeum/qute/issues1819source-repository head20 type: git21 location: https://git.8pit.net/qute.git2223common warnings24 ghc-options: -Wall2526library27 import: warnings28 -- other-extensions:29 hs-source-dirs: src30 default-language: GHC20213132 other-modules:33 Language.QBE.Util,34 Language.QBE.Numbers3536 exposed-modules:37 Language.QBE,38 Language.QBE.Types,39 Language.QBE.Parser4041 build-depends:42 base,43 parsec,44 containers,45 exceptions4647test-suite qute-syntax-test48 import: warnings49 default-language: GHC202150 type: exitcode-stdio-1.051 hs-source-dirs: test52 main-is: Main.hs5354 other-modules:55 Parser,56 Golden,57 Types5859 build-depends:60 base,61 qute-syntax,62 parsec,63 process,64 filepath,65 containers,66 tasty >=1.4.3,67 tasty-hunit >=0.10,68 tasty-golden >=2.3.5,