Nikolai Vincent Vaags
Nikolai Vincent Vaags
Whichever is the default; looks like `serde-wasm-bindgen`
Looks like I was wrong; according to https://docs.rs/crate/seed/latest/features `serde-json` is the default. Manually specifying `serde-json` in features gives the same result. Using `serde-wasm-bindgen` instead completely fails to deserialize the same...
> From Rust itself: > > ``` > In: 9223372036854776000_i64 > error: literal out of range for `i64` > --> src/main.rs:4:1 > | > 4 | 9223372036854776000_i64 > | ^^^^^^^^^^^^^^^^^^^^^^^...
> @kujeger I downloaded your example code and it just works. Could it be a platform issue? I've reproduced it across multiple machines and browsers (firefox and chromium), but they...
I can reproduce the rounding behaviour with this: ``` let foo = 1234567890123456789_i64 as f64; println!("{}", foo); ``` `1234567890123456800` So it looks like `fetch[..].json()` might be casting the numbers as...
Thanks for the suggestion! Unfortunately trying with the `malloc_override` branch gives more or less the same result: ``` $ box64 /opt/appgate/Appgate Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL...
As a workaround you can do this in hiera: ``` mongodb::server::config_data: storage.wiredTiger.engineConfig.directoryForIndexes: true storage.wiredTiger.engineConfig.cacheSizeGB: 10 ```
Yeah -- while having a good flatpak for wine with the various bits needed for individual games would be a pretty awesome thing, the scope is so big I'm not...
I also ran into this issue while creating a materialized view, so would be great to have a way to opt out of the transaction wrap: ``` error: while executing...
I guess there's some stuff going on with the msrv and features and things -- not sure how this is being handled?