packages feed

string-interpolate-0.2.0.1: string-interpolate.cabal

cabal-version: 1.18

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: b3c4b493a41aadee8fb1cd235201f3fc305dfecc895817cd699b8785b1b1bed9

name:           string-interpolate
version:        0.2.0.1
synopsis:       Haskell string/text/bytestring interpolation that just works
description:    Unicode-aware string interpolation that handles all textual types.
                .
                See the README at <https://gitlab.com/williamyaoh/string-interpolate/blob/master/README.md> for more info.
category:       Data, Text
homepage:       https://gitlab.com/williamyaoh/string-interpolate/blob/master/README.md
bug-reports:    https://gitlab.com/williamyaoh/string-interpolate/issues
author:         William Yao
maintainer:     williamyaoh@gmail.com
copyright:      2019-2020 William Yao
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-doc-files:
    README.md
    CHANGELOG.md

source-repository head
  type: git
  location: https://www.gitlab.com/williamyaoh/string-interpolate.git

library
  exposed-modules:
      Data.String.Interpolate
      Data.String.Interpolate.Conversion
  other-modules:
      Data.String.Interpolate.Parse
      Paths_string_interpolate
  hs-source-dirs:
      src/lib
  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -Wnoncanonical-monad-instances -fno-warn-name-shadowing
  build-depends:
      base ==4.*
    , bytestring
    , haskell-src-meta
    , template-haskell
    , text
    , text-conversions
    , utf8-string
  default-language: Haskell2010

test-suite string-interpolate-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_string_interpolate
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      QuickCheck
    , base ==4.*
    , bytestring
    , hspec
    , quickcheck-instances
    , quickcheck-text
    , quickcheck-unicode
    , random-shuffle
    , string-interpolate
    , text
    , unordered-containers
  default-language: Haskell2010

benchmark string-interpolate-bench
  type: exitcode-stdio-1.0
  main-is: Bench.hs
  other-modules:
      Paths_string_interpolate
  hs-source-dirs:
      bench
  build-depends:
      QuickCheck
    , base ==4.*
    , bytestring
    , criterion
    , formatting
    , interpolate
    , interpolatedstring-perl6
    , neat-interpolation
    , string-interpolate
    , text
  default-language: Haskell2010