1cabal-version: 3.42name: quebex-cli3version: 0.1.0.04-- synopsis:5-- description:6license: GPL-3.0-only7-- 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 -- -Wall-missed-specializations can be useful too18 ghc-options: -Wall1920common opts21 ghc-options: -fspecialise-aggressively222324executable quebex-cli25 import: warnings, opts26 main-is: Main.hs27 hs-source-dirs: app28 default-language: GHC202129 build-depends:30 base,31 quebex,32 quebex-symex,33 quebex-syntax,34 parsec,35 directory,36 optparse-applicative >=0.17.0.037