packages feed

ttc-0.2.3.0: ttc.cabal

name:           ttc
version:        0.2.3.0
category:       Data, Text
synopsis:       Textual Type Classes
description:
  This library provides type classes for conversion between data types and
  textual data types (strings).  Please see the README on GitHub at
  <https://github.com/ExtremaIS/ttc-haskell#readme>.

homepage:       https://github.com/ExtremaIS/ttc-haskell#readme
bug-reports:    https://github.com/ExtremaIS/ttc-haskell/issues
author:         Travis Cardwell <travis.cardwell@extrema.is>
maintainer:     Travis Cardwell <travis.cardwell@extrema.is>
copyright:      Copyright (c) 2019-2020 Travis Cardwell
license:        MIT
license-file:   LICENSE

cabal-version:  >=1.10
build-type:     Simple
tested-with:
  GHC ==8.2.2
   || ==8.4.4
   || ==8.6.5
   || ==8.8.4
   || ==8.10.2

extra-source-files:
  CHANGELOG.md
  README.md

source-repository head
  type: git
  location: https://github.com/ExtremaIS/ttc-haskell.git

library
  hs-source-dirs: src
  exposed-modules:
      Data.TTC
    , Data.TTC.Instances
  build-depends:
      base >=4.7 && <5
    , bytestring >=0.10.8 && <0.12
    , template-haskell >=2.12 && <2.17
    , text >=1.2.3 && <1.3
  default-language: Haskell2010
  ghc-options: -Wall

test-suite ttc-test
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Spec.hs
  other-modules:
      Data.TTC.Test
    , Data.TTC.Instances.Test
    , TestString
  build-depends:
      base
    , bytestring
    , tasty >=1.0 && <1.4
    , tasty-hunit >=0.10 && <0.11
    , template-haskell
    , text
    , ttc
  default-language: Haskell2010
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N