Skip to content

Commit

Permalink
Bump upper version bounds on aeson
Browse files Browse the repository at this point in the history
  • Loading branch information
ennocramer committed Sep 12, 2023
1 parent b77e1bf commit 6606da7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion floskell.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ library
ghc-options: -Wall
build-depends:
base >=4.9 && <4.19,
aeson >=0.11.3.0 && <2.2,
aeson >=0.11.3.0 && <2.3,
attoparsec >=0.13.1.0 && <0.15,
attoparsec-aeson >=2.1.0.0 && <2.3,
bytestring >=0.10.8.1 && <0.13,
containers >=0.5.7.1 && <0.7,
data-default >=0.7.1.1 && <0.8,
Expand Down
2 changes: 1 addition & 1 deletion src/Floskell/ConfigFile.hs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import Control.Applicative ( (<|>) )
import Data.Aeson
( (.:?), (.=), FromJSON(..), ToJSON(..) )
import qualified Data.Aeson as JSON
import qualified Data.Aeson.Parser as JSON ( json' )

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.6 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.6 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 8.10 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 8.10 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.4 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.4 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 8.8 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 8.8 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.0 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.0 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.2 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.2 (ubuntu-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 8.8 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 8.8 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.0 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.0 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 8.10 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 8.10 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.4 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.4 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.6 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.6 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.2 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant

Check warning on line 32 in src/Floskell/ConfigFile.hs

View workflow job for this annotation

GitHub Actions / GHC 9.2 (macOS-latest)

The qualified import of ‘Data.Aeson.Parser’ is redundant
import qualified Data.Aeson.Types as JSON ( typeMismatch )
import qualified Data.Attoparsec.ByteString as AP
import qualified Data.ByteString as BS
Expand All @@ -37,7 +38,6 @@ import Data.Char ( isLetter, isSpace )
#if MIN_VERSION_aeson(2,0,0)
import qualified Data.Aeson.KeyMap as Map
#else
import qualified Data.Aeson.Parser as JSON ( json' )
import qualified Data.HashMap.Lazy as Map
#endif

Expand Down

0 comments on commit 6606da7

Please sign in to comment.