-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathdelta-store.cabal
74 lines (71 loc) · 1.54 KB
/
delta-store.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
72
73
74
name: delta-store
version: 0.2024.9.3
synopsis: Facility for storing a Haskell value, using delta types.
homepage: https://github.com/cardano-foundation/cardano-wallet
author: Cardano Foundation (High Assurance Lab)
maintainer: [email protected]
copyright: 2021 IOHK
license: Apache-2.0
category: Web
build-type: Simple
cabal-version: >=1.10
flag release
description: Enable optimization and `-Werror`
default: False
manual: True
library
default-language:
Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options:
-Wall
-Wcompat
-fwarn-redundant-constraints
if (flag(release))
ghc-options:
-Werror
build-depends:
base
, delta-types
, fmt
, io-classes
, mtl
, QuickCheck
, transformers
hs-source-dirs:
src
exposed-modules:
Data.DBVar
Data.Delta.Update
Data.Store
Test.Store
test-suite unit
default-language:
Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options:
-threaded -rtsopts
-Wall
if (flag(release))
ghc-options: -O2 -Werror
build-depends:
base
, hspec
, QuickCheck
, fmt
, delta-store
, delta-types
build-tool-depends:
hspec-discover:hspec-discover
type:
exitcode-stdio-1.0
hs-source-dirs:
test/unit
main-is:
Main.hs
other-modules:
Data.StoreSpec