gidl.cabal 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. name: gidl
  2. version: 0.1.0.0
  3. license: AllRightsReserved
  4. license-file: LICENSE
  5. author: Pat Hickey
  6. maintainer: pat@galois.com
  7. copyright: 2015 Galois Inc
  8. build-type: Simple
  9. cabal-version: >=1.10
  10. library
  11. exposed-modules: Gidl,
  12. Gidl.Parse,
  13. Gidl.Interface,
  14. Gidl.Interface.AST,
  15. Gidl.Schema,
  16. Gidl.Types,
  17. Gidl.Types.AST,
  18. Gidl.Types.Base
  19. build-depends: base >=4.7 && <4.8,
  20. hashable,
  21. parsec,
  22. transformers
  23. hs-source-dirs: src
  24. default-language: Haskell2010
  25. ghc-options: -Wall
  26. executable gidl-test
  27. main-is: Test.hs
  28. hs-source-dirs: tests
  29. build-depends: base >= 4.6,
  30. gidl
  31. default-language: Haskell2010
  32. ghc-options: -Wall