-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hw-excess.cabal
122 lines (112 loc) · 5.68 KB
/
hw-excess.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
cabal-version: 2.2
name: hw-excess
version: 0.2.3.0
synopsis: Excess
description: Please see README.md
category: Data, Succinct Data Structures, Data Structures
homepage: http://github.com/haskell-works/hw-excess#readme
bug-reports: https://github.com/haskell-works/hw-excess/issues
author: John Ky
maintainer: newhoggy@gmail.com
copyright: 2016-2021 John Ky
license: BSD-3-Clause
license-file: LICENSE
tested-with: GHC == 9.2.2, GHC == 9.0.2, GHC == 8.10.7, GHC == 8.8.4, GHC == 8.6.5
build-type: Simple
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/haskell-works/hw-excess
common base { build-depends: base >= 4.11 && < 5 }
common bytestring { build-depends: bytestring >= 0.10 && < 0.13 }
common criterion { build-depends: criterion >= 1.4 && < 1.7 }
common doctest { build-depends: doctest >= 0.16.2 && < 0.23 }
common doctest-discover { build-depends: doctest-discover >= 0.2 && < 0.3 }
common hedgehog { build-depends: hedgehog >= 0.6 && < 1.5 }
common hspec { build-depends: hspec >= 2.3 && < 3 }
common hw-bits { build-depends: hw-bits >= 0.4.0.0 && < 0.8 }
common hw-hspec-hedgehog { build-depends: hw-hspec-hedgehog >= 0.1.0.4 && < 0.2 }
common hw-prim { build-depends: hw-prim >= 0.6.2.24 && < 0.7 }
common hw-rankselect-base { build-depends: hw-rankselect-base >= 0.2.0.0 && < 0.4 }
common QuickCheck { build-depends: QuickCheck >= 2.10 && < 2.15 }
common safe { build-depends: safe >= 0.2 && < 0.4 }
common vector { build-depends: vector >= 0.12 && < 0.14 }
common config
default-language: Haskell2010
ghc-options: -Wall -O2
if arch(x86_64)
ghc-options: -msse4.2
common hw-excess
build-depends: hw-excess
library
import: base, config
, hw-bits
, hw-prim
, hw-rankselect-base
, safe
, vector
exposed-modules: HaskellWorks.Data.Excess
HaskellWorks.Data.Excess.Excess0
HaskellWorks.Data.Excess.Excess1
HaskellWorks.Data.Excess.Internal.Branchless
HaskellWorks.Data.Excess.Internal.Partial.Table
HaskellWorks.Data.Excess.Internal.Table
HaskellWorks.Data.Excess.Internal.Triplet8
HaskellWorks.Data.Excess.MinExcess
HaskellWorks.Data.Excess.MinExcess0
HaskellWorks.Data.Excess.MinExcess1
HaskellWorks.Data.Excess.MinMaxExcess0
HaskellWorks.Data.Excess.MinMaxExcess1
HaskellWorks.Data.Excess.PartialMinExcess0
HaskellWorks.Data.Excess.PartialMinExcess1
HaskellWorks.Data.Excess.PartialMinMaxExcess0
HaskellWorks.Data.Excess.PartialMinMaxExcess1
HaskellWorks.Data.Excess.Triplet
autogen-modules: Paths_hw_excess
other-modules: Paths_hw_excess
hs-source-dirs: src
test-suite hw-excess-test
import: base, config
, QuickCheck
, hedgehog
, hspec
, hw-bits
, hw-prim
, hw-hspec-hedgehog
, vector
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-tool-depends: hspec-discover:hspec-discover
build-depends: hw-excess
other-modules: HaskellWorks.Data.Excess.Internal.BranchlessSpec
HaskellWorks.Data.Excess.MinExcess0Spec
HaskellWorks.Data.Excess.MinExcess1Spec
HaskellWorks.Data.Excess.MinMaxExcess0Spec
HaskellWorks.Data.Excess.MinMaxExcess1Spec
HaskellWorks.Data.Excess.PartialMinExcess0Spec
HaskellWorks.Data.Excess.PartialMinExcess1Spec
HaskellWorks.Data.Excess.PartialMinMaxExcess0Spec
HaskellWorks.Data.Excess.PartialMinMaxExcess1Spec
benchmark bench
import: base, config
, bytestring
, criterion
, hw-prim
, vector
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: bench
build-depends: hw-excess
test-suite doctest
import: base, config
, doctest
, doctest-discover
, hw-excess
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -threaded -rtsopts -with-rtsopts=-N
main-is: DoctestDriver.hs
HS-Source-Dirs: doctest
build-tool-depends: doctest-discover:doctest-discover