This repository has been archived by the owner on Aug 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcurrent-ordered-set.cabal
70 lines (59 loc) · 2.24 KB
/
concurrent-ordered-set.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
name: concurrent-ordered-set
version: 0.1
homepage: https://github.com/adaszko/concurrent-ordered-set
cabal-version: >= 1.10
build-type: Simple
license: BSD3
license-file: LICENSE
author: Adam Szkoda
extra-source-files: README.md LICENSE
stability: experimental
bug-reports: https://github.com/adaszko/concurrent-ordered-set/issues
category: Concurrency
synopsis: A lock-free concurrent set implementation
description: A lock-free concurrent set implementation based on skip lists and atomicModifyIORef.
flag developer
description: developer mode
default: False
source-repository head
type: git
location: git://github.com/adaszko/concurrent-ordered-set.git
library
build-depends: base,
random,
vector,
markable-ioref >= 0.1
ghc-options: -threaded -rtsopts -Wall -O2
if flag(developer)
ghc-options: -Werror
exposed-modules: Data.Concurrent.OrderedSet
default-language: Haskell2010
hs-source-dirs: src
test-suite Main
type: exitcode-stdio-1.0
build-depends: base,
random,
QuickCheck >= 2.0,
test-framework,
test-framework-quickcheck2,
concurrent-ordered-set
ghc-options: -threaded -rtsopts -Wall
if flag(developer)
ghc-options: -Werror
hs-source-dirs: test
main-is: Main.hs
default-language: Haskell2010
benchmark bench-set
type: exitcode-stdio-1.0
hs-source-dirs: . bench
ghc-options: -threaded -rtsopts -Wall
if flag(developer)
ghc-options: -Werror
main-is: Main.hs
build-depends: base,
random,
containers,
criterion,
concurrent-ordered-set,
markable-ioref >= 0.2
default-language: Haskell2010