-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfold-debounce.cabal
More file actions
60 lines (56 loc) · 2.82 KB
/
fold-debounce.cabal
File metadata and controls
60 lines (56 loc) · 2.82 KB
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
name: fold-debounce
version: 0.2.0.17
author: Toshio Ito <debug.ito@gmail.com>
maintainer: Toshio Ito <debug.ito@gmail.com>
license: BSD3
license-file: LICENSE
synopsis: Fold multiple events that happen in a given period of time.
description: Fold multiple events that happen in a given period of time. See "Control.FoldDebounce".
category: Control
cabal-version: 2.0
build-type: Simple
extra-source-files: README.md
extra-doc-files: ChangeLog.md
homepage: https://github.com/debug-ito/fold-debounce
bug-reports: https://github.com/debug-ito/fold-debounce/issues
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -fno-warn-unused-imports
exposed-modules: Control.FoldDebounce
default-extensions: DeriveDataTypeable
-- other-modules:
build-depends: base ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0 || ^>=4.21.0 || ^>=4.22.0,
data-default ^>=0.7.1 || ^>=0.8.0,
stm ^>=2.5.0,
time ^>=1.9.3 || ^>=1.11.1 || ^>=1.12.2 || ^>=1.14 || ^>=1.15,
stm-delay ^>=0.1.1
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -Wall -fno-warn-unused-imports "-with-rtsopts=-M512m"
main-is: Spec.hs
other-modules: Control.FoldDebounceSpec
build-tool-depends: hspec-discover:hspec-discover
build-depends: base ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0 || ^>=4.21.0 || ^>=4.22.0,
fold-debounce,
hspec ^>=2.10.6 || ^>=2.11.9,
stm ^>=2.5.0,
time ^>=1.9.3 || ^>=1.11.1 || ^>=1.12.2 || ^>=1.14 || ^>=1.15
test-suite spec-threaded
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -Wall -threaded -fno-warn-unused-imports "-with-rtsopts=-M512m"
main-is: Spec.hs
other-modules: Control.FoldDebounceSpec
build-tool-depends: hspec-discover:hspec-discover
build-depends: base ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0 || ^>=4.21.0 || ^>=4.22.0,
fold-debounce,
hspec ^>=2.10.6 || ^>=2.11.9,
stm ^>=2.5.0,
time ^>=1.9.3 || ^>=1.11.1 || ^>=1.12.2 || ^>=1.14 || ^>=1.15
source-repository head
type: git
location: https://github.com/debug-ito/fold-debounce.git