Émile Fugulin

Results 704 comments of Émile Fugulin

PR https://github.com/graphql-rust/graphql-client/pull/494 is better, should be able to merge as is and release a patch version

I think this is missing from the tuple parser

The rust `regex` library doesn't support look-ahead, we could switch for https://github.com/fancy-regex/fancy-regex but the performance of the base case becomes worst which I am not too happy about. Right now...

This might be better as native C in quickjs-ng. The guys are pretty cool so I would check with them.

Just FYI there should be a feature on all crates that use async hooks like timers.

Probably yeah, but we should make it opt-in for all crates that need to be modified for async hooks. I will need to read more about them, I am not...

The panic looks like a bug to me. All modules should work in parallel. We will have to investigate.

The AppImage is definitely not self-contained has it pretends @dlemstra. It is missing the plugins for `libheif`, I just spend a couple hours debugging this. The reason (I think) is...

@fmw42 The heic support needs two things: - Decoder: https://github.com/strukturag/vlc-libde265 which is LGPL, so can be built-into the AppImage with dynamic libs - Encoder: https://github.com/videolan/x265 which is GPL, that is...

Alright further digging confirms that the pre-built `libheif` looks for plugins ONLY in `/usr/lib/x86_64-linux-gnu/libheif/plugins` which makes it impossible to package the plugins into the `AppImage`. So we need to build...