packages feed

stringlike-0.0.0: stringlike.cabal

Name:               stringlike
Version:            0.0.0
Synopsis:           Transformations to several string-like types
Description:        Transformations to several string-like types
License:            MIT
License-file:       LICENSE
Copyright:          Selectel
Author:             Fedor Gogolev <knsd@knsd.net>
Maintainer:         Fedor Gogolev <knsd@knsd.net>
Homepage:           https://github.com/selectel/stringlike
Bug-reports:        https://github.com/selectel/stringlike/issues
Category:           Text
Build-type:         Custom
Cabal-version:      >= 1.12
Tested-with:        GHC == 7.6.*

Library
    Hs-source-dirs:   src
    Ghc-options:      -Wall -fno-warn-orphans
    Default-language: Haskell2010
    Build-depends:
        base                       == 4.6.*  || == 4.5.*
      , bytestring                 == 0.10.* || == 0.9.*
      , text                       == 0.11.*

    Exposed-modules:  Data.String.Like

Test-suite stringlike-tests
    Hs-source-dirs:   tests, src
    Main-is:          Tests.hs
    Type:             exitcode-stdio-1.0
    Default-language: Haskell2010

    Build-depends:
        base                       == 4.6.*  || == 4.5.*
      , bytestring                 == 0.10.* || == 0.9.*
      , text                       == 0.11.*
      , test-framework             == 0.8.*
      , test-framework-quickcheck2 == 0.3.*
      , QuickCheck                 == 2.5.*
      , quickcheck-instances       == 0.3.*