packages feed

data-dword-0.3.2.1: data-dword.cabal

Name: data-dword
Version: 0.3.2.1
Category: Data
Stability: experimental
Synopsis: Stick two binary words together to get a bigger one
Description:
  This package provides Template Haskell utilities for declaring fixed-length
  binary word data types. Signed and unsigned 96, 128, 160, 192, 224, and
  256-bit types are predefined.

Homepage: https://github.com/mvv/data-dword
Bug-Reports: https://github.com/mvv/data-dword/issues

Author: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
Maintainer: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
Copyright: 2011-2019 Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
License: BSD3
License-File: LICENSE

Extra-Source-Files:
  README.md

Tested-With: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2,
             GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7, GHC==9.0.1,
             GHC==9.2.1

Cabal-Version: >= 1.10.0
Build-Type: Simple

Source-Repository head
  Type: git
  Location: https://github.com/mvv/data-dword.git

Library
  Default-Language: Haskell2010
  Build-Depends:
    base             >= 4.6 && < 5,
    hashable         >= 1.1,
    data-bword       >= 0.1,
    template-haskell >= 2.8,
    ghc-prim
  Hs-Source-Dirs: src
  GHC-Options: -Wall
  Exposed-Modules:
    Data.DoubleWord
    Data.DoubleWord.TH
  Other-Modules:
    Data.DoubleWord.Base

Test-Suite tests
  Default-Language: Haskell2010
  Type: exitcode-stdio-1.0
  Build-Depends:
    base             >= 4.5 && < 5,
    tasty            >= 0.8,
    tasty-quickcheck >= 0.8,
    data-dword
  Hs-Source-Dirs: tests
  GHC-Options: -Wall
  Main-Is: Tests.hs
  Other-Modules:
    Types