packages feed

z85-0.0.0: z85.cabal

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

name:           z85
version:        0.0.0
synopsis:       Implementation of the z85 binary codec
description:    Please see the README on GitHub at <https://github.com/githubuser/z85-bytestring#readme>
category:       Data
homepage:       https://github.com/athanclark/z85#readme
bug-reports:    https://github.com/athanclark/z85/issues
author:         Athan Clark
maintainer:     athan.clark@localcooking.com
copyright:      Copyright (c) 2018 Athan Clark
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

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

source-repository head
  type: git
  location: https://github.com/athanclark/z85

library
  exposed-modules:
      Data.Attoparsec.ByteString.Z85
      Data.Attoparsec.Text.Z85
      Data.ByteString.Z85
      Data.ByteString.Z85.Internal
      Pipes.Z85
  other-modules:
      Paths_z85
  hs-source-dirs:
      src
  build-depends:
      QuickCheck
    , attoparsec
    , attoparsec-binary
    , base >=4.7 && <5
    , bytestring
    , pipes
    , pipes-bytestring
    , pipes-text
    , text
    , vector-sized
  default-language: Haskell2010

test-suite z85-bytestring-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_z85
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      QuickCheck
    , attoparsec
    , attoparsec-binary
    , base >=4.7 && <5
    , bytestring
    , pipes
    , pipes-bytestring
    , pipes-text
    , quickcheck-instances
    , tasty
    , tasty-hunit
    , tasty-quickcheck
    , text
    , vector-sized
    , z85
  default-language: Haskell2010