istext.cabal 954 B

12345678910111213141516171819202122232425
  1. -- Initial istext.cabal generated by cabal init. For further
  2. -- documentation, see http://haskell.org/cabal/users-guide/
  3. name: istext
  4. version: 0.1.0.0
  5. synopsis: IsText type class for data that can be converted to and from Strings.
  6. -- description:
  7. homepage: https://sealgram.com/git/haskell/text-like/
  8. license: MIT
  9. license-file: LICENSE
  10. author: Marcos Dumay de Medeiros
  11. maintainer: marcos@marcosdumay.com
  12. -- copyright:
  13. category: Text
  14. build-type: Simple
  15. -- extra-source-files:
  16. cabal-version: >=1.10
  17. library
  18. exposed-modules: Data.Text.IsText
  19. -- other-modules:
  20. other-extensions: TypeSynonymInstances, FlexibleInstances
  21. build-depends: base >=4.7 && <4.8, bytestring >=0.10 && <0.11, utf8-string >=1 && <1.1, text >=1.2 && <1.3
  22. hs-source-dirs: src
  23. default-language: Haskell2010