tokcum

Results 22 comments of tokcum

Oh, there is more urgent need. :) Lately, we have seen issues in our environment when VMs with orbit already installed and once started were cloned. The agents on the...

Hi, I think this is fixed with pull request #351 . I didn't update to mio 0.7.0 though because I went into a lot of trouble. So I stayed at...

I'm planning to use Trivy to generate SBOMs. Trivy can add the results of its own security vulnerability scan to the CycloneDX formated SBOM. However, when I import this SBOM...

I'm also looking forward to get this merged and released.

I'm willing to look into this. I would like to use custom_error in a project because it is free of unsafe code but I need support for generics. I'll give...

This is my first approach: When custom_error supports generics we could write this ```rust custom_error!{MyError Unknown{code: T} = "unknown error with code {code}.", Err41 = "Sit by a lake" }...

Dear OtaK, would you like to merge my pull request to sofa or are there any issues with it? Take care. Tobias

I was so happy when I found this crate because I was struggling to implement a file upload via actix-web + actix-multipart natively. However, I'm also wondering how I can...

Thank you @jacob-pro for pointing out into_inner(). Btw, the mut is not required. So, this approach works: > ```rust > #[post("/")] > async fn route(form: MultipartForm) -> impl Responder {...

@Sirneij, thanks for your approach. It works as well. I simplified it to show the essence. So with form.0, I don't even need the call to into_inner(). ```rust #[post("/")] async...