packages feed

readable-0.1.0.1: readable.cabal

name:           readable
version:        0.1.0.1
synopsis:       Reading from Text and ByteString

description:
  Provides a Readable type class for reading data types from ByteString and
  Text.

license:        BSD3
license-file:   LICENSE
author:         Doug Beardsley
maintainer:     mightybyte@gmail.com
build-type:     Simple
cabal-version:  >= 1.6
homepage:       https://github.com/mightybyte/readable
category:       Text

extra-source-files:
  LICENSE,
  README.md,
  Setup.hs

Library
  hs-source-dirs: src

  exposed-modules:
    Data.Readable

  build-depends:
    base        >= 4    && < 5,
    bytestring  >= 0.9  && < 0.11,
    text        >= 0.11 && < 0.12

  ghc-prof-options: -prof -auto-all
  ghc-options: -Wall -fwarn-tabs

source-repository head
  type:     git
  location: git://github.com/mightybyte/readable.git