-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
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
Expose Score enum #81
Conversation
Also out of curiosity why are you converting to |
I should have put it in another PR but I also derived |
Thanks, just one question, this looks good. I'm surprised the compiler didn't complain about |
Indeed this is a little surprising, I am not sure why this happened; maybe a nuance of the compiler heuristics I don't fully understand 🤷 Is this ok now with the serde fix? |
Yes, thank you! I'll put out a 3.0.1 with this asap. |
I noticed upgrading from 2.2.2 to 3.0 that the
Score
(which used to beu8
) is private.This breaks my usage of this library so I just exported
Score
to be public.I can't see any reason to keep
Score
private as it's exposed inEntropy
, I guess this is an oversight with the refactor?