Results 112 comments of Yuyi Wang

I've verified on Windows 10 and both .NET Core 3.0 and 3.1, with Edge Dev installed. Maybe it isn't compatible with Edge Beta?

@SteveSandersonMS I'll try to update later.

@SteveSandersonMS Updating completed, and I leave the dependency unchanged.

I would prefer tar rather tha zip, because filenames in tar are usually utf8, while in zip they could be various encodings.

I'm also working on a vfs-tar implementation: https://github.com/Berrysoft/vfs-tar . It is currently a readonly implementation. If you are interested in this, any help would be appreciated:)

I'm writing a software that includes a plugin framework. The plugins are WASM. Some of the plugins need to access files from the user input, and I cannot know about...

@bjorn3 What about this case: the user input is a JSON with some paths, and the JSON plugin parses the JSON and go to find the files. The host cannot...

A passable solution anyway, but I would appreciate a much prettier one. This solution needs platform-specific code, and the user input path should be change from `C:\foo\bar.txt` to `/c/foo/bar.txt`, which...

@sunfishcode It is nearly the same as my actual use case. In the actual case, the difference between user input is not the format, but the custom (YAML) properties. Only...

I'm planning on spliting `tar-parser`. I have also noticed that `nom` supports the read-like streams. There should be no big problems to do so. However, I'd like to support large...