packages feed

string-conv-0.1.2: string-conv.cabal

name:                string-conv
version:             0.1.2
synopsis:            Standardized conversion between string types
description:         Avoids the need to remember many different functions
                     for converting string types.  Just use one universal
                     function toS for all monomorphic string conversions.
license:             BSD3
license-file:        LICENSE
author:              Ozgun Ataman
maintainer:          ozgun.ataman@soostone.com
copyright:           Soostone Inc, 2012-2015
category:            Data, String, Text
homepage:            https://github.com/Soostone/string-conv
bug-reports:         https://github.com/Soostone/string-conv/issues
build-type:          Simple
cabal-version:       >=1.8
extra-source-files:
  README.md
  changelog.md

flag lib-Werror
  default: False
  manual: True

source-repository head
  type:     git
  location: https://github.com/Soostone/string-conv.git

library
  exposed-modules:     Data.String.Conv
  build-depends:       base >= 4.4 && < 5, bytestring, text
  if flag(lib-Werror)
    ghc-options: -Werror

  ghc-options: -Wall