diff --git a/hedgehog-extras.cabal b/hedgehog-extras.cabal index 1db7e91e..ee253690 100644 --- a/hedgehog-extras.cabal +++ b/hedgehog-extras.cabal @@ -28,7 +28,6 @@ common exceptions { build-depends: exceptions common filepath { build-depends: filepath } common hedgehog { build-depends: hedgehog } common http-conduit { build-depends: http-conduit } -common hw-aeson { build-depends: hw-aeson >= 0.1.8.0 } common mmorph { build-depends: mmorph } common mtl { build-depends: mtl } common network { build-depends: network } @@ -73,7 +72,6 @@ library filepath, hedgehog, http-conduit, - hw-aeson, mmorph, mtl, network, diff --git a/src/Hedgehog/Extras/Stock/Aeson.hs b/src/Hedgehog/Extras/Stock/Aeson.hs index 83847d59..2d703eb1 100644 --- a/src/Hedgehog/Extras/Stock/Aeson.hs +++ b/src/Hedgehog/Extras/Stock/Aeson.hs @@ -7,9 +7,9 @@ import Data.Aeson import Data.Functor import Data.HashMap.Lazy import Data.Text -import Prelude ((.), ($)) +import Prelude (($), (.)) -import qualified HaskellWorks.Data.Aeson.Compat.Map as KM +import qualified Data.Aeson.KeyMap as KM -- | Rewrite a JSON object to another JSON object using the function 'f'. --