packages feed

data-dword-0.2.1: data-dword.cabal

Name: data-dword
Version: 0.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, 2012 Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
License: BSD3
License-File: LICENSE

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,
    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,
    test-framework             >= 0.5,
    test-framework-quickcheck2 >= 0.2,
    QuickCheck                 >= 2.4,
    data-dword
  Hs-Source-Dirs: tests
  GHC-Options: -Wall
  Main-Is: Tests.hs
  Other-Modules:
    Types