gidl.cabal 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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/Attr.hs.template,
  15. support/tower/default.conf,
  16. support/tower/Makefile,
  17. support/rpc/Base.hs.template,
  18. support/rpc/Makefile,
  19. Makefile.sandbox
  20. library
  21. exposed-modules: Gidl,
  22. Gidl.Parse,
  23. Gidl.Interface,
  24. Gidl.Interface.AST,
  25. Gidl.Schema,
  26. Gidl.Types,
  27. Gidl.Types.AST,
  28. Gidl.Types.Base,
  29. Gidl.Backend.Cabal,
  30. Gidl.Backend.Haskell,
  31. Gidl.Backend.Haskell.Interface,
  32. Gidl.Backend.Haskell.Test,
  33. Gidl.Backend.Haskell.Types,
  34. Gidl.Backend.Ivory,
  35. Gidl.Backend.Ivory.Schema,
  36. Gidl.Backend.Ivory.Test,
  37. Gidl.Backend.Ivory.Types,
  38. Gidl.Backend.Rpc,
  39. Gidl.Backend.Tower,
  40. Gidl.Backend.Tower.Schema,
  41. Gidl.Backend.Tower.Server
  42. other-modules: Paths_gidl
  43. build-depends: base >=4.7 && <4.8,
  44. hashable,
  45. mainland-pretty,
  46. parsec,
  47. pretty-show,
  48. transformers,
  49. ivory-artifact,
  50. s-cargot,
  51. text,
  52. mtl
  53. hs-source-dirs: src
  54. default-language: Haskell2010
  55. ghc-options: -Wall
  56. executable gidl
  57. main-is: Main.hs
  58. hs-source-dirs: executables
  59. build-depends: base >= 4.6,
  60. ivory-artifact,
  61. gidl
  62. default-language: Haskell2010
  63. ghc-options: -Wall