You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no more Data.Aeson.Parser module starting with version aeson-2.0.0.0 and no json' either.
When the library is built with aeson flag and aeson > 2.0.0.0 the building will fail with:
>Network/HTTP/Simple.hs:106:1:error:>Couldnot find module ‘Data.Aeson.Parser’>Use-v (or `:set -v` in ghci) to see a list of the files searched for.>|>106| import Data.Aeson.Parser (json')
UPDATE: I see there is the dependency of attoparsec-aeson which has that implementation of Data.Aeson.Parser module, though I don't know why is not taken into consideration in my build set
The text was updated successfully, but these errors were encountered:
It seems I used an older/intermediate version from hackage(>= 2.2.0 && <2.3.7) . Now I referenced it directly from github and it works. Anyway, I guess these newer versions won't work anymore with aeson <2.x.x (though the dependency constraint of the aeson specifies that it is allowed ) since there will be an ambiguity on which Data.Aeson.Parsec to be used (from aeson or attoparsec-aeson).
maybe PackageImports extension should be used instead
There is no more
Data.Aeson.Parser
module starting with versionaeson-2.0.0.0
and nojson'
either.When the library is built with
aeson
flag and aeson > 2.0.0.0 the building will fail with:https://github.com/snoyberg/http-client/blob/f4f76f4fd72f227074d8635c244ea0b3b61c7163/http-conduit/Network/HTTP/Simple.hs#L106C1-L106C1
UPDATE: I see there is the dependency of attoparsec-aeson which has that implementation of
Data.Aeson.Parser
module, though I don't know why is not taken into consideration in my build setThe text was updated successfully, but these errors were encountered: