packages feed

format-0.1.0.0: format.cabal

name:                format
version:             0.1.0.0
synopsis:            Rendering from and scanning to format strings
description:         Rendering from and scanning to simple format strings
homepage:            https://github.com/bytbox/hs-format
license:             MIT
license-file:        LICENSE
author:              Scott Lawrence
maintainer:          bytbox@gmail.com
category:            Text
build-type:          Simple
cabal-version:       >=1.10

library
  default-language:  Haskell2010
  exposed-modules:   Text.Format
  build-depends:     haskell2010 ==1.*, parsec ==3.1.*

test-suite test
  default-language:  Haskell2010
  type:              exitcode-stdio-1.0
  main-is:           test.hs
  build-depends:     haskell2010 ==1.*, parsec ==3.1.*, QuickCheck==2.4.*