-
Thanks for sharing this very interesting library! I've been trying to understand its inner workings, but this is difficult since some central aspect seem both very clever (in a positive sense), and a…
-
I think numeric columns should be handled in rust-postgres. Numeric columns are very common data types for high precision requirements.
Looking at `diesel-pg` implementation, it seems to be convertin…
-
# Proposal
## Problem statement
One common pattern of numeric conversions is having a signed value and needing it in the unsigned type, or vice versa. Things like `isize::MAX as usize`, for example…
-
Currently `delaunator` only works with `f64`. I need to learn how Rust generics and numeric traits work to enable using the library with [other numeric types](https://doc.rust-lang.org/book/first-edit…
-
In https://github.com/geoarrow/geoarrow-rs/pull/788 @b4l prototyped a custom implementation of writing to WKT, and he [said](https://github.com/geoarrow/geoarrow-rs/pull/788#discussion_r1771944782)
…
-
Hi. thanks for this awesome library!
Is it possible to generate numeric enums in typescript from my rust enums?
```rust
#[derive(Serialize, Deserialize, TS, Debug)]
#[serde(rename_all = "camelCa…
-
### What is the current *bug* behavior?
It's a well known rough edge that `serde_json`'s arbitary precision feature changes the behavior for _all_ users of the crate; affecting uses of 3rd pa…
-
Postgres has arbitrary precision types that are critical for financial applications.
Implementing them will require a picking up a rust arbitrary precision library such as https://www.postgresql.or…
-
cannot compile getting
```
stens@cameroon ~/src/github.com/tzaeru/rust-audio-analysis $ rustc --version
rustc 1.18.0
stens@cameroon ~/src/github.com/tzaeru/rust-audio-analysis $ cargo chec…
-
In Rust 1.45, the `as` operator was changed to be a saturating cast for numeric types, but the num_traits library currently only seems to support checked casts (returning `Option`). Maybe it would be …