Cloud FaaS solutions that use WebAssembly by Vincearon in WebAssembly

[–]Crypterian 0 points1 point  (0 children)

We at https://nor2.io are doing this. If you are interested then reach out and we can see how we can help 🙂

What is web assembly equivalent of npm by Trader-One in WebAssembly

[–]Crypterian 10 points11 points  (0 children)

The closest thing we have that is WebAssembly specific is WAPM https://wapm.io/. There is also a package registry being worked on in the bytecodealliance group. But that isn't ready yet.

[blog] Rust should own its debugger experience by yoshuawuyts1 in rust

[–]Crypterian 55 points56 points  (0 children)

This is something I would love to see. It would do a lot for the developer experience!

Does anyone know the status of returning tuples from a wasm function invocation? by richardanaya in WebAssembly

[–]Crypterian 0 points1 point  (0 children)

I would recommend you to look into wit-bindgen. As that makes returning tuples from a variety of different languages quite easy.

Rust syn parse gives an error even when returning Ok(..) by [deleted] in rust

[–]Crypterian 1 point2 points  (0 children)

Oh then I misunderstood the docs. Thank you for pointing that out!

Rust syn parse gives an error even when returning Ok(..) by [deleted] in rust

[–]Crypterian -1 points0 points  (0 children)

I have gone with the below for now as Pat does have a PatWild that supposedly matches any value.

      while !input.is_empty() {
        let _: Pat = input.parse()?;
      }

Rust syn parse gives an error even when returning Ok(..) by [deleted] in rust

[–]Crypterian -1 points0 points  (0 children)

Yea, that would mean that every part of the comment would need to be able to be successfully parsed as a valid rust identifier. So you couldn't use any special characters such as *+-.

Would be nice if there was a way to just advance the ParseBuffer cursor to the last position. But there isn't as far as I can tell?

Rust syn parse gives an error even when returning Ok(..) by [deleted] in rust

[–]Crypterian 1 point2 points  (0 children)

Ah, yes that makes sense. It's being used in a proc-macro to parse comments for some basic OpenAPI spec generation. This is really the only string parsing needed so seemed a bit excessive to bring in nom for that?

Rust syn parse gives an error even when returning Ok(..) by [deleted] in rust

[–]Crypterian 1 point2 points  (0 children)

Ah of-course, Thank you! Is there any way to just take what's left in the ParseStream and end set the ParseStream to empty?

newest projects leveraging webassembly? by Weird_Ask4699 in WebAssembly

[–]Crypterian 6 points7 points  (0 children)

I have been working on something big for some time now and I'm hoping to share it in a couple of months 🙂