packages feed

leb128-binary-0.1: leb128-binary.cabal

cabal-version: 2.4
name: leb128-binary
version: 0.1
license: Apache-2.0
license-file: LICENSE
extra-source-files: README.md CHANGELOG.md
author: Renzo Carbonara
maintainer: renλren.zone
copyright: Renzo Carbonara, 2021
category: Binary
build-type: Simple
synopsis: Signed and unsigned LEB128 codec for binary library
description: Signed and unsigned LEB128 codec for @binary@ library.
homepage: https://gitlab.com/k0001/leb128-binary
bug-reports: https://gitlab.com/k0001/leb128-binary/issues
tested-with: GHC == 9.0.1

common basic
  default-language: Haskell2010
  ghc-options: -O2 -Wall 
  build-depends: base == 4.*, binary

library 
  import: basic
  hs-source-dirs: lib
  exposed-modules: 
    Data.Binary.ULEB128
    Data.Binary.SLEB128

test-suite test
  import: basic
  ghc-options: -threaded
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends:
    bytestring,
    hedgehog,
    leb128-binary,
    tasty,
    tasty-hedgehog,
    tasty-hunit,