packages feed

hex-text-0.1.0.0: hex-text.cabal

name: hex-text
version: 0.1.0.0
category: Text

synopsis: ByteString-Text hexidecimal conversions

description: Encode a ByteString as a hexidecimal Text value,
             or decode hexidecimal Text as a ByteString.

homepage:    https://github.com/typeclasses/hex-text
bug-reports: https://github.com/typeclasses/hex-text/issues

author:     Chris Martin
maintainer: Chris Martin, Julie Moronuki

copyright: 2018 Typeclass Consulting, LLC
license: Apache-2.0
license-file: license.txt

build-type: Simple
cabal-version: >= 1.10

extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/typeclasses/hex-text

library
  default-language: Haskell2010
  hs-source-dirs: src
  build-depends:
      base >=4.7 && <5
    , base16-bytestring
    , bytestring
    , text
  exposed-modules:
      Text.Hex

test-suite doctest
  default-language: Haskell2010
  hs-source-dirs: test
  type: exitcode-stdio-1.0
  main-is: doctest.hs
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , doctest