-
Notifications
You must be signed in to change notification settings - Fork 0
/
min-max-pqueue.cabal
77 lines (71 loc) · 1.92 KB
/
min-max-pqueue.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
cabal-version: 2.4
name: min-max-pqueue
version: 0.1.0.2
synopsis: Double-ended priority queues.
description: Min-max priority queues, also known as double-ended priority queues.
category: Data Structures
homepage: https://github.com/zliu41/min-max-pqueue
bug-reports: https://github.com/zliu41/min-max-pqueue/issues
author: Ziyang Liu <[email protected]>
maintainer: Ziyang Liu <[email protected]>
copyright: 2019-2021 Ziyang Liu
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with: GHC==9.2.1, GHC==9.0.1, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/zliu41/min-max-pqueue
library
exposed-modules:
Data.IntMinMaxQueue
Data.MinMaxQueue
other-modules:
Paths_min_max_pqueue
autogen-modules:
Paths_min_max_pqueue
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, containers >=0.5.11 && <0.7
default-language: Haskell2010
test-suite hedgehog
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
IntMinMaxQueueSpec
MinMaxQueueSpec
Paths_min_max_pqueue
autogen-modules:
Paths_min_max_pqueue
hs-source-dirs:
test/hedgehog
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, containers >=0.5.11 && <0.7
, hedgehog >=1.0 && <2
, min-max-pqueue
default-language: Haskell2010
benchmark benchmark
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
SeqQueue
Paths_min_max_pqueue
autogen-modules:
Paths_min_max_pqueue
hs-source-dirs:
benchmark
build-depends:
base >=4.7 && <5
, containers >=0.5.11 && <0.7
, criterion >=1.4.1 && <1.6
, integer-logarithms >=1.0.2.2 && <1.1
, min-max-pqueue
, random >=1.1 && <1.3
default-language: Haskell2010