textual.cabal 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. -- Initial istext.cabal generated by cabal init. For further
  2. -- documentation, see http://haskell.org/cabal/users-guide/
  3. name: textual
  4. version: 0.2.0.0
  5. synopsis: Textual type class for data that represent text
  6. description:
  7. Exposes the Textual type class, for data that represent textual content
  8. .
  9. Also, exposes a simple utility for conversion between instances, much like
  10. fromIntegral converts between Integral instances.
  11. homepage: https://sealgram.com/git/haskell/text-like/
  12. license: MIT
  13. license-file: LICENSE
  14. author: Marcos Dumay de Medeiros
  15. maintainer: marcos@marcosdumay.com
  16. category: Text
  17. build-type: Simple
  18. cabal-version: >=1.10
  19. source-repository head
  20. type: git
  21. location: https://sealgram.com/git/haskell/textual
  22. branch: master
  23. source-repository this
  24. type: git
  25. location: https://sealgram.com/git/haskell/textual
  26. tag: 0.1.0.0
  27. library
  28. exposed-modules: Data.Textual.Class
  29. other-extensions: TypeSynonymInstances, FlexibleInstances
  30. build-depends: base >=4.7 && <4.9, bytestring >=0.10, utf8-string >=1, text >=1.2
  31. hs-source-dirs: src
  32. default-language: Haskell2010