-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
56 lines (51 loc) · 1.37 KB
/
package.yaml
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
name: cbcast-lh
dependencies:
- liquidhaskell
- liquid-base
- liquid-prelude
- liquid-containers
ghc-options:
- -Wall
library:
source-dirs: lib
ghc-options:
- -fno-warn-incomplete-patterns # LH aready does this
- -fplugin=LiquidHaskell
- -fplugin-opt=LiquidHaskell:--short-names # Readable errors
- -fplugin-opt=LiquidHaskell:--exact-data-cons # Constructors in refinements
- -fplugin-opt=LiquidHaskell:--reflection # Extrinsic proofs
- -fplugin-opt=LiquidHaskell:--no-adt # Partial constructors
- -fplugin-opt=LiquidHaskell:--ple-local # PLE when you ask for it
executables:
example:
main: ExampleKvServer.hs
ghc-options:
- -threaded
- -rtsopts
- '"-with-rtsopts=-N -T"'
dependencies:
- cbcast-lh
- aeson
- async
- http-client
- servant
- servant-client
- servant-client-core
- servant-server
- stm
- warp
- wai-extra
- wai-middleware-metrics
- ekg
- ekg-core
tests:
doctest:
main: Doctest.hs
dependencies:
- doctest
- QuickCheck
listing:
main: Listing.hs
dependencies:
- cbcast-lh
- stm