Liam Curry
Liam Curry
`IntoStaticStr` cannot be used inside const functions. It would be nice if there were a derive macro for this that could be used with const. For example: ```rust use std::borrow::Cow;...
[`marked`](https://github.com/chjj/marked) hasn't been updated in nearly a year, is looking unmaintained, and was just found to be [vulnerable to XSS attacks](https://snyk.io/blog/marked-xss-vulnerability/). This PR replaces `marked` with [`markdown-it`](https://github.com/markdown-it/markdown-it), a newer, actively...
Have you considered supporting benchmarks for [`wasm-bindgen`](/rustwasm/wasm-bindgen)? rustwasm/wasm-bindgen#828 brings up this issue. I think the idea would be to reuse some of the [`wasm-bindgen-test`](/rustwasm/wasm-bindgen/tree/master/crates/test) code to run benchmarks in the...
Enums are already supported in results, but not as [input values](https://facebook.github.io/graphql/#sec-Enum-Value). This PR adds support for enums as input values. For example, with a schema like this: ```graphql enum Fruit...
Here are a [few simple examples](https://gist.github.com/liamcurry/5175c5b5559fdc126c6f) and their generated file sizes: | Filename | Source | Generated | Minified | Minified + Gzipped (Level 9) | | --- | --:...
`replacePrefix` has no effect if you're using the CLI. I imagine this would be fixed by just adding: ``` js compositeFlags.replacePrefix = compositeFlags.replacePrefix || configFileFlags.replacePrefix; ``` to `cli.js`. Also, there...
Currently when requesting identities with `scatter.getIdentity` you can optionally specify required fields. If a user doesn't have an identity with all the required fields they are shown this message: ...
Is there any plan to support testing tasks? It looks like there's a couple of alternative testing libraries that support tasks, but surely it would be better to have this...
[Base64 data](http://en.wikipedia.org/wiki/Base64) for background images doesn't work because the CssAbsoluteFilter is messing around with the URL, trying to add the media path. It looks like changing line 29 of css_default.py...
Thanks for writing this! I think this will be very useful for an idea I have for converting GraphQL schemas to Elm code. However one key thing that seems to...