Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relax bounds #10

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions servant-prometheus.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ library
UndecidableInstances
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
build-depends:
base >=4.10 && <4.18
base >=4.10 && <4.21
, clock >=0.8.3 && <0.9
, ghc-prim >=0.8.0 && <0.10
, hashable >=1.4.2 && <1.5
, ghc-prim >=0.8.0 && <0.12
, hashable >=1.4.2 && <1.6
, 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
, servant >=0.14 && <0.21
, text >=1.2.5 && <2.2
, wai >=3.2.3 && <3.3
default-language: GHC2021

Expand All @@ -81,20 +81,20 @@ test-suite spec
build-tool-depends:
hspec-discover:hspec-discover
build-depends:
aeson >=2.0 && <2.2
, base >=4.10 && <4.18
, containers >=0.6.5 && <0.7
aeson >=2.0 && <2.3
, base >=4.10 && <4.21
, containers >=0.6.5 && <0.8
, hspec ==2.*
, 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-client >=0.14 && <0.21
, servant-prometheus
, servant-server >=0.14 && <0.20
, servant-server >=0.14 && <0.21
, text
, wai
, warp >=3.2.4 && <3.4
, warp >=3.2.4 && <3.5
default-language: GHC2021

benchmark bench
Expand All @@ -115,7 +115,7 @@ benchmark bench
UndecidableInstances
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.18
base >=4.10 && <4.21
, process >=1.6.16 && <1.7
, servant-prometheus
, servant-server
Expand Down
Loading