packages feed

castagnoli-0.2.0.0: castagnoli.cabal

cabal-version: 2.2
name: castagnoli
version: 0.2.0.0
synopsis: Portable CRC-32C
description: Portable implementation of CRC-32C.
homepage: https://github.com/andrewthad/castagnoli
bug-reports: https://github.com/andrewthad/castagnoli/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:
    Crc32c
  other-modules:
    Crc32c.Table
  build-depends:
    , base >=4.12.0.0 && <5
    , primitive >=0.7 && <0.8
    , primitive-unlifted >=0.1 && <0.2
    , byteslice >=0.1.1 && <0.3
  hs-source-dirs: src
  ghc-options: -O2 -Wall
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends:
    , base
    , bytestring
    , castagnoli
    , text
    , primitive
  ghc-options: -Wall -O2
  default-language: Haskell2010