You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 7, 2024. It is now read-only.
I'm working on a point-of-sale (POS), and we have extensive use of arbitrary precision arithmetic. I'm wondering if it's possible to get support for deserializing Decimal structs into similar things on the rust side.
A couple of ideas, on the elixir side decimal is turned into a String which is then deserialized into the appropriate struct on the rust side. There are several arbitrary precision arithmetic libraries on the rust side (rug, rust-gmp, etc...) but some of them use serde so I wonder if that would work nicely into this library.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm working on a point-of-sale (POS), and we have extensive use of arbitrary precision arithmetic. I'm wondering if it's possible to get support for deserializing
Decimal
structs into similar things on the rust side.A couple of ideas, on the elixir side decimal is turned into a String which is then deserialized into the appropriate struct on the rust side. There are several arbitrary precision arithmetic libraries on the rust side (rug, rust-gmp, etc...) but some of them use serde so I wonder if that would work nicely into this library.
The text was updated successfully, but these errors were encountered: