packages feed

dataurl-0.1.0.0: dataurl.cabal

name:                dataurl
version:             0.1.0.0
synopsis:            Handle data-urls
description:         Please see README.md
homepage:            http://github.com/agrafix/dataurl#readme
license:             MIT
license-file:        LICENSE
author:              Alexander Thiemann <mail@athiemann.net>
maintainer:          Alexander Thiemann <mail@athiemann.net>
copyright:           (c) 2015 Alexander Thiemann <mail@athiemann.net>
category:            Web
build-type:          Simple
extra-source-files:
     README.md
cabal-version:       >=1.10
tested-with:         GHC==7.10.2

library
  hs-source-dirs:      src
  exposed-modules:     Web.DataUrl
  build-depends:
                base >= 4.7 && < 5,
                attoparsec >=0.12,
                bytestring >=0.10,
                base64-bytestring >=1.0,
                text >=1.2
  default-language:    Haskell2010

test-suite dataurl-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Test.hs
  other-modules:       Web.DataUrlTest
  build-depends:
                dataurl,
                HTF >= 0.12,
                base >= 4.7 && < 5,
                attoparsec >=0.12,
                bytestring >=0.10,
                base64-bytestring >=1.0,
                text >=1.2
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/agrafix/dataurl