-
Notifications
You must be signed in to change notification settings - Fork 116
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
Support for rust_decimal::Decimal #351
Conversation
@gustavo-shigueo sorry you were so fast with merging my last one that I had to open a new one for this :) |
df87a0a
to
82acfec
Compare
@gustavo-shigueo any chance this could be release |
rename rustdecimal_impl and smolstr_impl
285c644
to
5700cb0
Compare
Don't worry about smol_str, I've updated the feature name on |
How does this interact with the serde features of There's
We had some discussion about this a while back in #273. As far as I can tell, we cannot support this library here properly, and support within |
You're completely right about this suspicion. I didn't remember that I don't see how to get arund this right now. We might in a hacky way serialize a Decimal via Closing this for now and might reopen if I come up with a new idea. Any chance you could release version 9.1 that includes the |
Would it be possible to revisit this? I'm using sea-orm's CLI to generate rust types which utilize I was about to open a PR just ilke this one when I decided to do a gut check and see if anyone tried to support this because I didn't see |
Goal
Adds support for the currently most popular decimals crate
rust_decimal
(23m downloads on crates.io).I think the crates
rust_decimal
andbigdecimal
don't needserde
themselves enabled as the users of this library will enable it by themselves if they need it.Checklist