macaw/x86_symbolic/macaw-x86-symbolic.cabal
Ryan Scott 1966a30909 symbolic: Make {lookup,update}Reg implementations panic rather than error
See https://github.com/GaloisInc/macaw/issues/412 for the remaining task of
allowing the return types of `GenArchVals`' `{lookup,update}Reg` functions to
indicate the possibility of an error.
2024-07-26 15:25:29 -04:00

66 lines
1.4 KiB
Plaintext

name: macaw-x86-symbolic
version: 0.0.1
author: Galois, Inc.
maintainer: jhendrix@galois.com
build-type: Simple
cabal-version: >= 1.10
license: BSD3
license-file: LICENSE
library
build-depends: base >= 4.13,
bv-sized >= 1.0.0,
crucible >= 0.4,
crucible-llvm,
flexdis86 >= 0.1.2,
lens,
macaw-base,
macaw-symbolic,
macaw-x86 >= 0.3.1,
mtl,
panic,
parameterized-utils,
prettyprinter >= 1.7.0,
vector,
what4 >= 0.4
hs-source-dirs: src
default-language: Haskell2010
exposed-modules:
Data.Macaw.X86.Symbolic
Data.Macaw.X86.Crucible
other-modules:
Data.Macaw.X86.Symbolic.Panic
ghc-options: -Wall -Wcompat
ghc-prof-options: -O2 -fprof-auto-top
default-extensions: NoStarIsType
test-suite macaw-x86-symbolic-tests
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -Wcompat
main-is: Main.hs
hs-source-dirs: tests
build-depends:
base >= 4,
bytestring,
containers,
crucible,
crucible-llvm,
elf-edit,
filepath,
Glob >= 0.9 && < 0.11,
lens,
macaw-base,
macaw-symbolic,
macaw-x86,
macaw-x86-symbolic,
parameterized-utils,
prettyprinter,
tasty,
tasty-hunit,
text,
what4,
vector