Skip to content

Commit

Permalink
Add missing bounds (#3)
Browse files Browse the repository at this point in the history
* fix: add missing bounds

* fix: cabal check warning about changelog
  • Loading branch information
worm2fed authored Sep 4, 2023
1 parent 731d5a6 commit f2859d3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 21 deletions.
29 changes: 16 additions & 13 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ maintainer: Andrii Demydenko <[email protected]>

extra-source-files:
- README.md
- CHANGELOG.md
- LICENSE

extra-doc-files:
- CHANGELOG.md

tested-with: GHC ==9.2.8

verbatim:
Expand Down Expand Up @@ -91,9 +93,9 @@ library:
- 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
- servant >= 0.14 && < 0.20
- text >= 1.2.5 && < 1.3
- wai >=3.2.3 && <3.3
- wai >= 3.2.3 && < 3.3

tests:
spec:
Expand All @@ -105,19 +107,20 @@ tests:
- -threaded
- '"-with-rtsopts=-N -A64m -AL256m"'
dependencies:
- aeson
- containers
- hspec >=2 && <3
- hspec-expectations-pretty-diff
- http-client
- servant-prometheus

- aeson >= 2.0 && < 2.1
- 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
- servant-prometheus
- servant-server
- servant-client >= 0.14 && < 0.20
- servant-server >= 0.14 && < 0.20
- text
- wai
- warp >=3.2.4 && <3.4
- warp >= 3.2.4 && < 3.4

benchmarks:
bench:
Expand All @@ -127,7 +130,7 @@ benchmarks:
- -threaded
- '"-with-rtsopts=-N -A64m -AL256m"'
dependencies:
- process
- process >= 1.6.16 && < 1.7
- servant-prometheus
- servant-server
- text
Expand Down
17 changes: 9 additions & 8 deletions servant-prometheus.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ tested-with:
GHC ==9.2.8
extra-source-files:
README.md
CHANGELOG.md
LICENSE
extra-doc-files:
CHANGELOG.md

source-repository head
type: git
Expand Down Expand Up @@ -101,17 +102,17 @@ test-suite spec
build-tool-depends:
hspec-discover:hspec-discover
build-depends:
aeson
aeson ==2.0.*
, base >=4.10 && <4.17
, containers
, containers >=0.6.5 && <0.7
, hspec ==2.*
, hspec-expectations-pretty-diff
, http-client
, hspec-expectations-pretty-diff >=0.7.2.2 && <0.8
, http-client >=0.7.13 && <0.8
, prometheus-client
, servant
, servant-client
, servant-client >=0.14 && <0.20
, servant-prometheus
, servant-server
, servant-server >=0.14 && <0.20
, text
, wai
, warp >=3.2.4 && <3.4
Expand Down Expand Up @@ -146,7 +147,7 @@ benchmark bench
ghc-options: -Weverything -Wno-missing-exported-signatures -Wno-missing-import-lists -Wno-missed-specialisations -Wno-all-missed-specialisations -Wno-unsafe -Wno-safe -Wno-inferred-safe-imports -Wno-missing-safe-haskell-mode -Wno-missing-local-signatures -Wno-monomorphism-restriction -Wno-prepositive-qualified-module -Wno-missing-kind-signatures -Wno-implicit-prelude -threaded "-with-rtsopts=-N -A64m -AL256m"
build-depends:
base >=4.10 && <4.17
, process
, process >=1.6.16 && <1.7
, servant-prometheus
, servant-server
, text
Expand Down

0 comments on commit f2859d3

Please sign in to comment.