-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlargeword.cabal
41 lines (38 loc) · 1.49 KB
/
largeword.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
name: largeword
version: 1.2.4
license: BSD3
copyright: Dominic Steinitz <[email protected]>
author: Dominic Steinitz <[email protected]>
maintainer: Dominic Steinitz <[email protected]>
description: Provides Word128, Word192 and Word256 and a way of producing other large words if required.
synopsis: Provides Word128, Word192 and Word256 and a way of producing other large words if required.
homepage: https://github.com/idontgetoutmuch/largeword
category: Data
stability: stable
build-type: Simple
cabal-version: >= 1.8
tested-with: GHC >= 6.12.3 && < 7.9
-- Tests/Properties.hs shouldn't have to go here, but the source files
-- for the test-suite stanzas don't get picked up by `cabal sdist`.
Extra-source-files: Tests/Properties.hs
source-repository head
type: git
location: https://github.com/idontgetoutmuch/largeword
Library
Build-Depends: base >= 4.0 && < 5,
binary,
data-serializer
exposed-modules: Data.LargeWord
Test-suite tests
Type: exitcode-stdio-1.0
Hs-source-dirs: Tests
Main-is: Properties.hs
Build-depends: base >= 4.0 && < 5,
binary,
bytestring,
test-framework >= 0.3.3 && < 0.9,
test-framework-quickcheck2 >= 0.2.9 && < 0.4,
test-framework-hunit >= 0.2.6 && < 0.4,
QuickCheck >= 2.4.0.1,
HUnit >= 1.2.2.3,
largeword