Closed freizl closed 3 years ago
Hi @freizl
We use stack for the dependency management to get compatible package versions. Currently, lts-16.12
is used as the resolver and this means aeson-1.4.7.1
is used. I guess because you directly use cabal, it takes the newest version (aeson-1.5.6.0)
which is not compatible with the current implementation. I would either use stack to resolve it or adjust the cabal file locally to pin the version aeson-1.4.7.1
. Does this help?
Hi @joelfisch, yeah, stack works perfectly (I was able to build from source code as well) !
I'm curious what would be resolution in order to be compatible with aeson-1.5.6
?
Thanks!
Hi @freizl , I guess you can just remove the Ord
instance of Value
in src/OpenAPI/Generate/Types/Schema.hs:140
entirely. Can I close this issue?
Any hints on how to resolve this? Thank you!