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

Support ghc-9.4. #95

Merged
merged 1 commit into from Jun 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 6 additions & 4 deletions influxdb.cabal
Expand Up @@ -11,7 +11,7 @@ license: BSD3
license-file: LICENSE
author: Mitsutoshi Aoe
maintainer: Mitsutoshi Aoe <me@maoe.name>
copyright: Copyright (C) 2014-2021 Mitsutoshi Aoe
copyright: Copyright (C) 2014-2023 Mitsutoshi Aoe
category: Database
build-type: Custom
tested-with:
Expand All @@ -20,6 +20,8 @@ tested-with:
GHC == 8.8.4
GHC == 8.10.4
GHC == 9.0.1
GHC == 9.2.8
GHC == 9.4.5

extra-source-files:
README.md
Expand Down Expand Up @@ -74,8 +76,8 @@ library
ViewPatterns
ghc-options: -Wall
build-depends:
base >= 4.11 && < 4.17
, aeson >= 0.7 && < 2.1
base >= 4.11 && < 4.18
, aeson >= 0.7 && < 2.2
, attoparsec < 0.15
, bytestring >= 0.10 && < 0.12
, clock >= 0.7 && < 0.9
Expand All @@ -91,7 +93,7 @@ library
, text < 2.1
, time >= 1.5 && < 1.14
, unordered-containers < 0.3
, vector >= 0.10 && < 0.13
, vector >= 0.10 && < 0.14
hs-source-dirs: src
default-language: Haskell2010

Expand Down