1cabal-version: 3.42name: quebex-syntax3version: 0.1.0.04-- synopsis:5-- description:6license: GPL-3.0-only AND BSD-2-Clause AND MIT7-- license-file:8author: Sören Tempel9maintainer: soeren+git@soeren-tempel.net10-- copyright:11category: Language12build-type: Simple13-- extra-doc-files:14-- extra-source-files:1516common warnings17 ghc-options: -Wall1819library20 import: warnings21 -- other-extensions:22 hs-source-dirs: src23 default-language: GHC20212425 other-modules:26 Language.QBE.Util2728 exposed-modules:29 Language.QBE,30 Language.QBE.Types,31 Language.QBE.Parser,32 Language.QBE.Numbers3334 build-depends:35 base,36 parsec,37 containers,38 exceptions3940test-suite quebex-syntax-test41 import: warnings42 default-language: Haskell201043 type: exitcode-stdio-1.044 hs-source-dirs: test45 main-is: Main.hs4647 other-modules:48 Parser,49 Golden5051 build-depends:52 base,53 quebex-syntax,54 parsec,55 process,56 filepath,57 containers,58 tasty >=1.4.3,59 tasty-hunit >=0.10,60 tasty-golden >=2.3.5,