packages feed

base62-0.1.0.2: base62.cabal

cabal-version: 2.2
name: base62
version: 0.1.0.2
synopsis: Base62 encoding and decoding
description:
  Encode and decode using the base62 encoding scheme.
homepage: https://github.com/byteverse/base62
bug-reports: https://github.com/byteverse/base62/issues
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: andrew.thaddeus@gmail.com
copyright: 2019 Andrew Martin
category: Data
extra-source-files: CHANGELOG.md

library
  exposed-modules:
    Data.Word.Base62
  build-depends:
    , base >=4.12 && <5
    , byteslice >=0.2 && <0.3
    , natural-arithmetic >=0.1 && <0.2
    , primitive >=0.7 && <0.8
    , bytebuild >=0.3.4 && <0.4
    , wide-word >=0.1.0.8 && <0.2
    , word-compat >=0.0.4
  hs-source-dirs: src
  default-language: Haskell2010
  ghc-options: -Wall -O2

test-suite test
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends:
    , base >=4.12.0.0 && <5
    , base62
    , tasty
    , tasty-quickcheck
    , tasty-hunit
    , byteslice
    , primitive
    , wide-word

test-suite doctest
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Doctest.hs
  build-depends:
    , base
    , doctest >= 0.10
    , base62
    , wide-word
  default-language: Haskell2010