-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstm-fsifo.cabal
68 lines (62 loc) · 1.76 KB
/
stm-fsifo.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
cabal-version: 2.4
author: Travis Staton <[email protected]>
bug-reports: https://github.com/awkward-squad/stm-fsifo/issues
category: Concurrency, Data
copyright: Copyright (C) 2021-2023 Travis Staton, Mitchell Rosen
homepage: https://github.com/awkward-squad/stm-fsifo
license-file: LICENSE
license: BSD-3-Clause
maintainer: Travis Staton <[email protected]>, Mitchell Dalvi Rosen <[email protected]>
name: stm-fsifo
synopsis: A FIFO queue that supports deleting an enqueued element
tested-with: GHC == 9.4.8, GHC == 9.6.5, GHC == 9.8.2
version: 1.0.0
description:
@stm-fsifo@ (first still in first out) is a FIFO queue that
supports /O(1)/ push, pop, and removing any element from the
queue.
extra-doc-files:
CHANGELOG.md
README.md
common component
default-language: GHC2021
ghc-options:
-Weverything
-Wno-all-missed-specialisations
-Wno-implicit-prelude
-Wno-missing-import-lists
-Wno-missing-local-signatures
-Wno-missing-safe-haskell-mode
-Wno-monomorphism-restriction
-Wno-prepositive-qualified-module
-Wno-safe
-Wno-unsafe
if impl(ghc >= 9.2)
ghc-options:
-Wno-missing-kind-signatures
if impl(ghc >= 9.8)
ghc-options:
-Wno-missing-role-annotations
library
import: component
build-depends:
base ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19,
stm ^>= 2.5.0,
default-extensions:
LambdaCase
exposed-modules: Control.Concurrent.STM.Fsifo
hs-source-dirs: lib
test-suite test
import: component
build-depends:
base,
containers ^>= 0.6 || ^>= 0.7,
hedgehog ^>= 1.4,
stm,
stm-fsifo,
tasty ^>= 1.4,
tasty-hedgehog ^>= 1.4,
ghc-options: -rtsopts -threaded
hs-source-dirs: test
main-is: Main.hs
type: exitcode-stdio-1.0