-- Initial string-convert.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: string-convert
version: 3.0.1
synopsis: Universal string conversions
description: Provides functions and typeclasses for transparent
conversions between various string types.
homepage: https://bitbucket.org/tdammers/string-convert
license: BSD3
license-file: LICENSE
author: Tobias Dammers
maintainer: tdammers@gmail.com
copyright: 2016 Tobias Dammers
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