packages feed

string-convert-4.0.0.1: string-convert.cabal

-- Initial string-convert.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                string-convert
version:             4.0.0.1
synopsis:            Universal string conversions
description:         Provide unified conversion functions between any two string-like types.
homepage:            https://bitbucket.org/tdammers/string-convert
license:             BSD3
license-file:        LICENSE
author:              Tobias Dammers
maintainer:          tdammers@gmail.com
-- copyright:           
category:            Text
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Text.StringConvert
  -- other-modules:       
  -- other-extensions:    
  build-depends: base >=4.5 && <5.0
               , bytestring
               , text
               , utf8-string
  -- hs-source-dirs:      
  default-language:    Haskell2010
test-suite tests
  build-depends: base >= 4.5 && <5.0
               , string-convert
               , tasty
               , tasty-hunit
               , bytestring
               , text
               , utf8-string
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs: test
  default-language: Haskell2010