cabal-version: 2.2 name: hex-text version: 0.1.0.2 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: MIT license-file: license.txt build-type: Simple tested-with: GHC == 8.0.2 , GHC == 8.2.2 , GHC == 8.4.3 , GHC == 8.6.5 , GHC == 8.8.4 , GHC == 8.10.1 extra-source-files: README.md changelog.txt source-repository head type: git location: https://github.com/typeclasses/hex-text library default-language: Haskell2010 ghc-options: -Wall hs-source-dirs: src build-depends: base >=4.9 && <4.15 , base16-bytestring ^>= 1.0 , bytestring ^>=0.10 || ^>=0.11 , text ^>= 1.2 exposed-modules: Text.Hex test-suite doctest default-language: Haskell2010 ghc-options: -Wall hs-source-dirs: test type: exitcode-stdio-1.0 main-is: doctest.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base >=4.9 && <4.15 , doctest ^>= 0.16 || ^>= 0.17