Magic Len (Ron Li)
Magic Len (Ron Li)
I'm not sure what you were trying to do, but maybe you want the following code, ```typescript const crcRunner = (props: { bufferData: Buffer; algoSubType: string }) => { const...
You need to set up the development environment for Rust to compile the binary. You can simply install `rustup` with this command: `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh`....
> error[E0658]: the `#[non_exhaustive]` attribute is an experimental feature It seems that your Rust is too old... (see https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1400-2019-12-19) You don't need to use docker. Just run `curl --proto '=https'...
I think this a great idea. Any PR is welcome!
@rafaelmaeuer Thank you for everything you have done. My idea is to separate the precompiled `.node` files and automatically download them from the internet during the `npm install node-crc` stage....
The path that pass to the `absolutize_from` function should be absolute.
Could you provide some examples?
I replaced the `multipart` crate with `multer` and upgrade Rocket to 0.5.0-dev. The example can be compiled and works fine. 0a175ccc2138d7cc3e0360843814f126fc455f5c
I wrote [another example](https://github.com/magiclen/rocket-multipart-form-data/blob/master/examples/image_uploader_by_from_form.rs) which uses a struct to derive [`FromForm`](https://api.rocket.rs/master/rocket/form/trait.FromForm.html) to try to do the same things that [this example](https://github.com/magiclen/rocket-multipart-form-data/blob/master/examples/image_uploader.rs) does.
Thanks for your advice. If the developer ignores files that are stored in the file system after calling the `parse` method of a `MultipartFormData` instance, those files should be deleted...