packages feed

base58-bytestring-0.0.2: base58-bytestring.cabal

name:                base58-bytestring
version:             0.0.2
synopsis:            Implementation of BASE58 transcoding for ByteStrings

description: Implementation of BASE58 transcoding copy-pasted from
             haskoin package

homepage: https://bitbucket.org/s9gf4ult/base58-bytestring
license:             PublicDomain
license-file:        UNLICENSE
author:              Philippe Laprade, Jean-Pierre Rupp
maintainer:          s9gf4ult@gmail.com
category:            Data, ByteStrings
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type:     git
  location: https://s9gf4ult@bitbucket.org/s9gf4ult/base58-bytestring.git

library
  exposed-modules: Data.ByteString.Base58

  default-extensions: OverloadedStrings
                    , DeriveDataTypeable
                    , DeriveGeneric
                    , GeneralizedNewtypeDeriving

  build-depends:       base >=4.6 && < 5
                     , bytestring


  hs-source-dirs:      src
  ghc-options: -Wall
  default-language:    Haskell2010

test-suite test
  type:    exitcode-stdio-1.0
  main-is: Main.hs

  hs-source-dirs:  test
  ghc-options:     -Wall -rtsopts -threaded

  build-depends:       base >=4.6 && < 5
                     , base58-bytestring
                     , bytestring
                     , quickcheck-assertions >= 0.2.0
                     , quickcheck-instances
                     , tasty
                     , tasty-quickcheck