1cabal-version: 3.42name: qute-cli3version: 0.1.04synopsis: Command-line interface for the Qute software analysis framework.5description:6 This package provides a command-line interface for the software analysis framework7 [Qute](https://hackage.haskell.org/package/qute). Specifically, it includes a concrete8 simulator for the [QBE intermediate language](https://c9x.me/compile/) targeted by Qute9 and a [symbolic executor](https://en.wikipedia.org/wiki/Symbolic_execution) based on10 Qute's [symbolic semantics](https://hackage.haskell.org/package/qute-symex). Further,11 it provides a library with utility modules needed for this purpose. This, for example,12 includes an implementation of the [KTest format](https://notes.8pit.net/notes/c8o8.html).13license: GPL-3.0-only AND MIT14-- license-file:15author: Sören Tempel16maintainer: soeren+hackage@soeren-tempel.net17-- copyright:18category: Language19build-type: Simple20homepage: https://git.8pit.net/qute21bug-reports: https://github.com/nmeum/qute/issues2223source-repository head24 type: git25 location: https://git.8pit.net/qute.git2627common warnings28 -- -Wall-missed-specializations can be useful too29 ghc-options: -Wall3031common opts32 ghc-options: -fspecialise-aggressively3334library35 import: warnings, opts36 hs-source-dirs: src37 default-language: GHC20213839 build-depends:40 base,41 binary,42 bytestring,43 containers,44 qute,45 qute-symex,46 qute-syntax,47 optparse-applicative >=0.17.0.04849 exposed-modules:50 Data.KTest,51 Language.QBE.CmdLine5253executable qute54 import: warnings, opts55 main-is: Main.hs56 hs-source-dirs: app/qute57 default-language: GHC202158 build-depends:59 base,60 qute,61 qute-cli,62 qute-syntax,63 optparse-applicative6465executable qute-symex66 import: warnings, opts67 main-is: Main.hs68 hs-source-dirs: app/qute-symex69 default-language: GHC202170 build-depends:71 base,72 qute,73 qute-cli,74 qute-symex,75 qute-syntax,76 mtl,77 filepath,78 binary,79 directory,80 optparse-applicative8182test-suite qute-cli-test83 import: warnings84 default-language: GHC202185 type: exitcode-stdio-1.086 hs-source-dirs: test87 main-is: Main.hs8889 other-modules:90 KTest9192 build-depends:93 base,94 binary,95 bytestring,96 qute-cli,97 tasty >=1.4.3,98 tasty-hunit >=0.10