-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmultiset.cabal
56 lines (51 loc) · 1.77 KB
/
multiset.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
name: multiset
version: 0.3.4.3
author: Twan van Laarhoven
maintainer: [email protected]
bug-reports: https://github.com/twanvl/multiset/issues
category: Data Structures
synopsis: The Data.MultiSet container type
description:
A variation of Data.Set.
Multisets, sometimes also called bags, can contain multiple copies of the same key.
license: BSD3
license-file: LICENSE
build-type: Simple
Cabal-version: >= 1.10
extra-source-files: include/Typeable.h CHANGELOG
tested-with: GHC == 8.8.1,
GHC == 8.6.5, GHC == 8.4.4, GHC == 8.2.2, GHC == 8.0.2,
GHC == 7.10.3, GHC == 7.8.4, GHC == 7.6.3, GHC == 7.4.2,
GHC == 7.2.2, GHC == 7.0.4
source-repository head
type: git
location: http://github.com/twanvl/multiset.git
Library
default-language: Haskell2010
exposed-modules: Data.MultiSet, Data.IntMultiSet
include-dirs: include
default-extensions: CPP
ghc-options: -Wall
build-depends: containers >= 0.5.4, base >= 4 && < 5, deepseq >=1.2 && <1.5
test-suite doctests
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -threaded
hs-source-dirs: test
main-is: Main.hs
build-depends: base >= 4 && < 5
, doctest
if impl(ghc < 8.0)
buildable: False
test-suite multiset-properties
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -threaded
hs-source-dirs: test
main-is: multiset-properties.hs
build-depends: QuickCheck
, base
, checkers >= 0.5
, multiset
, tasty
, tasty-quickcheck