-
Notifications
You must be signed in to change notification settings - Fork 3
/
effectful-cache.cabal
71 lines (63 loc) · 1.74 KB
/
effectful-cache.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
cabal-version: 3.0
name: effectful-cache
version: 0.0.1.0
homepage:
https://github.com/haskell-effectful/effectful-cache/tree/main/effectful-cache#readme
bug-reports: https://github.com/haskell-effectful/effectful-cache/issues
author: Hécate Moonlight
maintainer: Hécate Moonlight
license: MIT
build-type: Simple
extra-source-files:
CHANGELOG.md
LICENSE.md
README.md
source-repository head
type: git
location: https://github.com/haskell-effectful/effectful-cache
common common-extensions
default-extensions:
ConstraintKinds
DataKinds
FlexibleContexts
FlexibleInstances
GADTs
KindSignatures
ScopedTypeVariables
TypeApplications
TypeOperators
default-language: Haskell2010
common common-ghc-options
ghc-options:
-Wall -Wcompat -Werror -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-fhide-source-paths -Wno-unused-do-bind -fwrite-ide-info
-hiedir=.hie -haddock
common common-rts-options
ghc-options: -rtsopts -threaded -with-rtsopts=-N
library
import: common-extensions
import: common-ghc-options
hs-source-dirs: src
exposed-modules: Effectful.Cache
build-depends:
, base <=4.17
, cache
, effectful-core ^>=1.0
, hashable
test-suite effectful-cache-test
import: common-extensions
import: common-ghc-options
import: common-rts-options
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Utils
hs-source-dirs: test
build-depends:
, base
, cache
, effectful-cache
, effectful-core
, hashable
, tasty
, tasty-hunit