name: base58-bytestring version: 0.1.0 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 , Data.ByteString.Base58.Internal 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 default-language: Haskell2010 build-depends: base >=4.6 && < 5 , base58-bytestring , bytestring , quickcheck-assertions >= 0.2.0 , quickcheck-instances , tasty , tasty-quickcheck benchmark bench type: exitcode-stdio-1.0 main-is: Main.hs default-extensions: OverloadedStrings hs-source-dirs: bench ghc-options: -Wall -rtsopts -threaded default-language: Haskell2010 build-depends: base >=4.6 && < 5 , base58-bytestring , bytestring , criterion