packages feed

stringable-0.1.2: stringable.cabal

Name:                stringable
Version:             0.1.2
Synopsis:            A Stringable type class, in the spirit of Foldable and Traversable
Description:         'Data.Stringable' provides a type class with a set of functions for
                     converting to and from the most often used string-linke types in
                     Haskell.
License-file:        LICENSE
License:             MIT
Author:              John Wiegley
Maintainer:          johnw@newartisans.com
Build-Type:          Simple
Cabal-Version:       >=1.10
Category:            Data, Text, ByteString

Source-repository head
  type: git
  location: git://github.com/jwiegley/stringable.git

-- Test-suite smoke
--   default-language: Haskell98
--   type: exitcode-stdio-1.0
--   main-is: Main.hs
--   hs-source-dirs: tests
--   build-depends:
--       base >=3
--     , stringable
--     , process
--     , system-filepath >= 0.4.7
--     , system-fileio   >= 0.3.9
--     , time            >= 1.4
--     , text            >= 0.11.2
--     , containers      >= 0.4.2
--     , bytestring      >= 0.9.2.1
--     , lens            >= 2.8

Library
  default-language: Haskell98
  build-depends:
      base            >= 3 && < 5
    , system-filepath >= 0.4.7
    , text            >= 0.11.2
    , bytestring      >= 0.9.2.1
  exposed-modules:
    Data.Stringable