mitchmindtree
mitchmindtree
@GabrielMajeri thanks for the insight! I'm with you in that I'd much prefer to see a pure-rust alternative by supporting the rspirv project (e.g. `rspirv-val` and `rspirv-opt` crates). I'll have...
Oh my mistake! Then I guess my question should be - how do I go about using `glsl` to find a comment block (e.g. `/* */`) and then retrieve the...
Here's a single example of the kind of file I'm trying to parse: ```glsl /*{ "DESCRIPTION": "demonstrates the use of multiple image-type inputs", "CREDIT": "by zoidberg", "ISFVSN": "2.0", "CATEGORIES": [...
No rush/pressure at all, and thanks so much for your prompt response and all your work! :heart:
Thanks for the response! I'm happy to have a go at implementing this sometime in the coming weeks/months if noone beats me to it :+1:
`forc` currently uses [`tracing`](https://docs.rs/tracing/latest/tracing/index.html) for its logging implementation. The [tracing subscriber](https://github.com/FuelLabs/sway/blob/master/forc-util/src/lib.rs#L434-L442) we use for handling logged messages applies an environment filter which [defaults to the "info" log-level](https://github.com/FuelLabs/sway/blob/master/forc-util/src/lib.rs#L431). The environment filter...
@bingcicle SGTM!
@Tusharkshahi I'm going to close this PR as it's gathering dust, however if you'd like to rebase and take on the suggestions above feel free to re-open!
I've opened a PR against this branch that removes some unused deps ~and attempts to improve the readability throughout mdbook-forc-documenter a little~ here https://github.com/FuelLabs/sway/pull/2520. If we can land that, I...
Adding some quick thoughts on this as it was raised again recently in #2433: The simplest approach might be to add prelude names while constructing the initial `Namespace`. The `Namespace`...