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 containers3839test-suite quebex-syntax-test40 import: warnings41 default-language: Haskell201042 type: exitcode-stdio-1.043 hs-source-dirs: test44 main-is: Main.hs4546 other-modules:47 Parser,48 Golden4950 build-depends:51 base,52 quebex-syntax,53 parsec,54 process,55 filepath,56 containers,57 tasty >=1.4.3,58 tasty-hunit >=0.10,59 tasty-golden >=2.3.5,