We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In #724 I bump aeson and make it work across versions.
It would be good if duckling can update the constraints on Text and Hashable so it works on a modern version of GHC.
for hashable, one merely needs to add the following to Duckling.Types:
-- Eq instance Eq (Dimension a) where (==) a b = hash a == hash b
For Text there are more detailed changes needed, as Text switches from UTF-16 to UTF-8, and Duckling uses internals functions to manipulate Texts.
Suggested new bounds are hashable >= 1.2.4.0 && < 1.5 and text >= 2 && < 2.2
hashable >= 1.2.4.0 && < 1.5
text >= 2 && < 2.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In #724 I bump aeson and make it work across versions.
It would be good if duckling can update the constraints on Text and Hashable so it works on a modern version of GHC.
for hashable, one merely needs to add the following to Duckling.Types:
For Text there are more detailed changes needed, as Text switches from UTF-16 to UTF-8, and Duckling uses internals functions to manipulate Texts.
Suggested new bounds are
hashable >= 1.2.4.0 && < 1.5
andtext >= 2 && < 2.2
The text was updated successfully, but these errors were encountered: