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 was 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.
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
Decimalstructs 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.