-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathservant-effectful.cabal
78 lines (68 loc) · 1.93 KB
/
servant-effectful.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
75
76
77
78
cabal-version: 3.0
name: servant-effectful
version: 0.0.1.0
homepage:
https://github.com/haskell-effectful/servant-effectful/tree/main/servant-effectful#readme
bug-reports:
https://github.com/haskell-effectful/servant-effectful/issues
author: Hécate Moonlight
maintainer: Hécate Moonlight
license: MIT
build-type: Simple
extra-source-files:
CHANGELOG.md
LICENSE.md
README.md
tested-with: GHC ==9.2.8 || ==9.4.8 || ==9.6.6 || ==9.8.4 || ==9.10.1
source-repository head
type: git
location: https://github.com/haskell-effectful/servant-effectful
common common-extensions
default-extensions:
ConstraintKinds
DataKinds
FlexibleContexts
FlexibleInstances
GADTs
KindSignatures
ScopedTypeVariables
TypeApplications
TypeFamilies
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
-Wno-unticked-promoted-constructors -Wunused-packages
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.Servant
build-depends:
, base <5
, effectful-core >=2.3
, mtl >=2
, servant-server ^>=0.20
, warp >=3.3
test-suite servant-effectful-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
, effectful-core
, hashable
, servant
, servant-effectful
, servant-server
, tasty
, tasty-hunit