hvif.cabal 852 B

12345678910111213141516171819202122232425262728293031
  1. name: hvif
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. license: BSD3
  6. license-file: LICENSE
  7. author: Getty Ritter <gettylefou@gmail.com>
  8. maintainer: Getty Ritter <gettylefou@gmail.com>
  9. copyright: ©2016 Getty Ritter
  10. -- category:
  11. build-type: Simple
  12. cabal-version: >= 1.12
  13. library
  14. exposed-modules: Graphics.HVIF
  15. ghc-options: -Wall
  16. build-depends: base >=4.7 && <4.9
  17. , bytestring
  18. , cereal
  19. , containers
  20. default-language: Haskell2010
  21. default-extensions: OverloadedStrings,
  22. ScopedTypeVariables
  23. executable hvif2svg
  24. hs-source-dirs: hvif2svg
  25. main-is: Main.hs
  26. build-depends: base >=4.7 && <4.9
  27. , hvif
  28. , bytestring
  29. , containers