forked from haskell-servant/servant-ekg
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.yaml
126 lines (112 loc) · 3.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: servant-prometheus
version: 1.2.0
github: worm2fed/servant-prometheus
synopsis: Helpers for using prometheus with servant
description: Please see the README on GitHub at <https://github.com/worm2fed/servant-prometheus#readme>
category: Servant, Web, System
license: BSD-3-Clause
license-file: LICENSE
author: Andrii Demydenko <[email protected]>, Anchor Engineering <[email protected]>, Servant Contributors
maintainer: Andrii Demydenko <[email protected]>
extra-source-files:
- README.md
- LICENSE
extra-doc-files:
- CHANGELOG.md
tested-with:
- GHC == 9.2.8
- GHC == 9.4.7
- GHC == 9.4.8
verbatim:
cabal-version: 2.4
# GHC's GHC2021 language extension is supported by GHC >= 9.2.1
# for more details see: https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0380-ghc2021.rst
language: GHC2021
default-extensions:
- DataKinds
- DeriveAnyClass
- DerivingStrategies
- OverloadedStrings
- RecordWildCards
- UndecidableInstances
ghc-options:
# For details on warnings:
# https://downloads.haskell.org/~ghc/master/users-guide/using-warnings.html
# Enable all warnings and disable the ones we don’t care about
- -Weverything
# Turns off the more strict -Wmissing-signatures
# See https://ghc.haskell.org/trac/ghc/ticket/14794#ticket
- -Wno-missing-exported-signatures
# Requires explicit imports of _every_ function (e.g. ‘$’); too strict
- -Wno-missing-import-lists
# When GHC can’t specialize a polymorphic function. No big deal and requires
# fixing underlying libraries to solve
- -Wno-missed-specialisations
# See missed-specialisations
- -Wno-all-missed-specialisations
# Don’t use Safe Haskell warnings
- -Wno-unsafe
- -Wno-safe
- -Wno-inferred-safe-imports
- -Wno-missing-safe-haskell-mode
# Warning for polymorphic local bindings; nothing wrong with those
- -Wno-missing-local-signatures
# Don’t warn if the monomorphism restriction is used
- -Wno-monomorphism-restriction
# Still need it, because generated cabal module uses prepositive position
- -Wno-prepositive-qualified-module
# Do not warn about missing kind signatures; there is no much sense for it
# now, our project is not so type-complicated.
- -Wno-missing-kind-signatures
# Do not warn about implicit prelude since we use default one
- -Wno-implicit-prelude
dependencies:
- base >=4.10 && < 4.18
library:
source-dirs: lib
dependencies:
- clock >= 0.8.3 && < 0.9
- ghc-prim >= 0.8.0 && < 0.10
- hashable >= 1.4.2 && < 1.5
- http-types >= 0.12.3 && < 0.13
- prometheus-client >= 1.1.0 && < 1.2
- servant >= 0.14 && < 0.20
- text >= 1.2.5 && < 2.1
- wai >= 3.2.3 && < 3.3
tests:
spec:
source-dirs: test
main: Spec.hs
build-tools: hspec-discover:hspec-discover
ghc-options:
- -Wno-missing-export-lists
- -threaded
- '"-with-rtsopts=-N -A64m -AL256m"'
dependencies:
- servant-prometheus
- aeson >= 2.0 && < 2.2
- containers >= 0.6.5 && < 0.7
- hspec >= 2 && < 3
- hspec-expectations-pretty-diff >= 0.7.2.2 && < 0.8
- http-client >= 0.7.13 && < 0.8
- prometheus-client
- servant
- servant-client >= 0.14 && < 0.20
- servant-server >= 0.14 && < 0.20
- text
- wai
- warp >= 3.2.4 && < 3.4
benchmarks:
bench:
source-dirs: bench
main: Main.hs
ghc-options:
- -threaded
- '"-with-rtsopts=-N -A64m -AL256m"'
dependencies:
- process >= 1.6.16 && < 1.7
- servant-prometheus
- servant-server
- text
- wai
- warp