12345678910111213141516171819202122232425262728293031323334353637383940 |
- -- Initial istext.cabal generated by cabal init. For further
- -- documentation, see http://haskell.org/cabal/users-guide/
- name: textual
- version: 0.1.0.0
- synopsis: Textual type class for data that represent text
- description:
- Exposes the Textual type class, for data that represent textual content
- .
- Also, exposes a simple utility for conversion between instances, much like
- fromIntegral converts between Integral instances.
- homepage: https://sealgram.com/git/haskell/text-like/
- license: MIT
- license-file: LICENSE
- author: Marcos Dumay de Medeiros
- maintainer: marcos@marcosdumay.com
- category: Text
- build-type: Simple
- cabal-version: >=1.10
- source-repository head
- type: git
- location: https://sealgram.com/git/haskell/textual
- branch: master
- source-repository this
- type: git
- location: https://sealgram.com/git/haskell/textual
- tag: 0.1.0.0
- library
- exposed-modules: Data.Textual
- other-extensions: TypeSynonymInstances, FlexibleInstances
- build-depends: base >=4.7, bytestring >=0.10, utf8-string >=1, text >=1.2
- hs-source-dirs: src
- default-language: Haskell2010
|