gidl.cabal 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. name: gidl
  2. version: 0.1.0.0
  3. license: BSD3
  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. data-files: support/ivory/Unpack.hs.template,
  11. support/ivory/CodeGen.hs.template,
  12. support/ivory/Makefile,
  13. support/tower/CodeGen.hs.template,
  14. support/tower/default.conf,
  15. support/tower/Makefile,
  16. support/rpc/Base.hs.template,
  17. support/rpc/Makefile
  18. library
  19. exposed-modules: Gidl,
  20. Gidl.Parse,
  21. Gidl.Interface,
  22. Gidl.Interface.AST,
  23. Gidl.Schema,
  24. Gidl.Types,
  25. Gidl.Types.AST,
  26. Gidl.Types.Base,
  27. Gidl.Backend.Cabal,
  28. Gidl.Backend.Haskell,
  29. Gidl.Backend.Haskell.Interface,
  30. Gidl.Backend.Haskell.Test,
  31. Gidl.Backend.Haskell.Types,
  32. Gidl.Backend.Ivory,
  33. Gidl.Backend.Ivory.Schema,
  34. Gidl.Backend.Ivory.Test,
  35. Gidl.Backend.Ivory.Types,
  36. Gidl.Backend.Rpc,
  37. Gidl.Backend.Tower,
  38. Gidl.Backend.Tower.Schema,
  39. Gidl.Backend.Tower.Interface
  40. other-modules: Paths_gidl
  41. build-depends: base >=4.7 && <4.8,
  42. hashable,
  43. mainland-pretty,
  44. parsec,
  45. pretty-show,
  46. transformers,
  47. ivory-artifact
  48. hs-source-dirs: src
  49. default-language: Haskell2010
  50. ghc-options: -Wall
  51. executable gidl
  52. main-is: Main.hs
  53. hs-source-dirs: executables
  54. build-depends: base >= 4.6,
  55. ivory-artifact,
  56. gidl
  57. default-language: Haskell2010
  58. ghc-options: -Wall