I am following this tutorial webScrapper using HXT. I am using Stack here.
While adding dependency for MaybeT, it asked to:
Recommended action: try adding the following to your extra-deps in /Users/***/Haskell Development/Scrapper/stack.yaml: - MaybeT-0.1.2
Now doing so to ended up with this message on running stack build:
In the dependencies for MaybeT-0.1.2: base-4.9.0.0 must match <4.8 (latest applicable is 4.7.0.2) needed due to Scrapper-0.1.0.0 -> MaybeT-0.1.2
Being new to Stack, I am unable to solve the problem, in my cabal file the the dependency:
build-depends: base >= 4.7 && < 5
, hxt
, url
, HTTP
, MaybeT
In stack.yaml
resolver: lts-7.12
extra-deps: [MaybeT-0.1.2]
What is it that I have missed. How can I solve this?