hanzo-examples.cabal 712 B

1234567891011121314151617181920212223242526272829
  1. name: hanzo-examples
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. license: BSD3
  6. author: Getty Ritter <hanzo@infinitenegativeutility.com
  7. maintainer: Getty Ritter <hanzo@infinitenegativeutility.com>
  8. copyright: @2019 Getty Ritter
  9. -- category:
  10. build-type: Simple
  11. cabal-version: >=1.14
  12. executable hanzo-io-unit
  13. main-is: IOUnit.hs
  14. ghc-options: -Wall
  15. build-depends: base >=4.7 && <5, hanzo
  16. default-language: Haskell2010
  17. executable hanzo-io-exitcode
  18. main-is: IOUnit.hs
  19. ghc-options: -Wall
  20. build-depends: base >=4.7 && <5, hanzo
  21. default-language: Haskell2010
  22. executable hanzo-withargs
  23. main-is: WithArgs.hs
  24. ghc-options: -Wall
  25. build-depends: base >=4.7 && <5, hanzo
  26. default-language: Haskell2010