forked from mvv/data-dword
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-dword.cabal
62 lines (54 loc) · 1.62 KB
/
data-dword.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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.2,
GHC==9.2.7, GHC==9.4.5, GHC==9.6.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