-
Notifications
You must be signed in to change notification settings - Fork 0
/
simpoole.cabal
51 lines (47 loc) · 1.65 KB
/
simpoole.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
cabal-version: 2.2
name: simpoole
version: 0.4.0
category: Data, Resources
synopsis: Simple pool
description: Provides a simple pool implementation.
author: Ole Krüger <[email protected]>
maintainer: Ole Krüger <[email protected]>
homepage: https://github.com/vapourismo/simpoole
license: BSD-3-Clause
license-file: LICENSE
extra-source-files: ChangeLog.md
build-type: Simple
source-repository head
type: git
location: git://github.com/vapourismo/simpoole.git
common warnings
ghc-options: -Wall -Wextra -Wno-name-shadowing
library
import: warnings
default-language: Haskell2010
ghc-options: -Wall -Wextra -Wno-name-shadowing -Wredundant-constraints
build-depends: base >= 4.13 && < 5,
concurrency >= 1.6.0.0,
containers >= 0.5.8,
exceptions,
time,
mtl
hs-source-dirs: lib
exposed-modules: Simpoole
Simpoole.Monad
Simpoole.Monad.Internal
Simpoole.Monad.Class
other-modules: Simpoole.Internal
test-suite simpoole-tests
import: warnings
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -Wextra -Wno-name-shadowing -threaded -with-rtsopts=-N
build-depends: base,
simpoole,
concurrency,
hspec >= 2.7.1
hs-source-dirs: test
main-is: Main.hs
other-modules: SimpooleSpec
Simpoole.MonadSpec