Frédéric Nieto

Results 133 comments of Frédéric Nieto

just make sure to fix the bug that was added in the last merge, i commented the line. Also adding tests for more edge cases on the replace_range function would...

Ok, i did suggest something but it depended on generic const expr which is still unstable. Even if the size is > 255, all operation sizes are runtype checked anyway...

Usize guarantees maximum speed as it will always be a register. U64 seems natural but in the end numtraits are not the way to go. Maybe i'll try a generalized...

In my benchmark it took 1 cycle to copy, 4 cycles to from_str, 5 cycles to push_str. It will be pretty hard to beat that, at least on an arm...

The reason for this i think is an unexhaustive implementation of the `AsExpression` trait (it seeds the base types, the nullables, the refs and all combinations between them). Diesel is...

I attempted to do so in my fork, uplink-sys compiles but there are underlying issues with the bindgen or build... ``` error[E0063]: missing field `_address` in initializer of `UplinkCopyObjectOptions` -->...

Related issue: https://github.com/rust-lang/rust-bindgen/issues/1683

I created a branch with precompiled binaries for windows. https://github.com/Wicpar/uplink-rust/tree/precompiled The build script is also heavily altered. Adding targets for the precompiled libs should be as easy as adding a...

The makefile is fundamentally incompatible with windows, not only because of the commands it uses, but also because it fails to find the go command on wsl even when on...

> Regarding not being able to create presigned URLS, is it because isn't offered in the `uplink-c` or because `uplink` crate crashes o doesn't expose it? I think there is...