Marco Napetti

Results 15 issues of Marco Napetti

I know it's not an issue directly connected to multipart, but it's chain's closing ring... I need to send a multipart/form-data submit to an https address, I searched for a...

When publishing to rabbit, if I use a ShortString as header, I get this error log: ``` ERROR lapin::channel: Connection closed on channel 0 by 0:0 => AMQPError { kind:...

I'm trying to build a metric that sends the number of hits per page on a webserver. Using simply `Metric::u64_counter` creates a global counter that doesn't resets at every metrics...

question
area:metrics

I'm unable to reproduce the problem with a MVP, so I'll try to be more descriptive I can, sorry for that. **Preamble:** I have this crate that holds all common...

A-LLVM

### Describe the Bug I'm able to apply conditionally `wasm_bindgen` proc-macro, but not his attributes ### Steps to Reproduce let's say we have a "wasm" feature ```rust #[cfg_attr(feature = "wasm",...

bug

Adds route DELETE /api/v1/crates/:crate_id Resolves #5293

C-enhancement ✨
A-backend ⚙️
B-needs-rfc

Hello, I really like your job, I use this crate really a lot, and I found the lack of a Future integration quite sad, because I often write future-based software...

My bad for this second PR, but I also think it's better to separate concepts. This PR is kind-of more invasive than the previous, it introduces pagination on search queries...

Probably connected to #3, let's say I have this code: ```rust use wasm_bindgen::prelude::*; #[derive(serde::Deserialize, tsify::Tsify)] #[tsify(from_wasm_abi)] pub struct Foo { bar: Bar, } #[derive(serde::Deserialize, tsify::Tsify)] #[tsify(from_wasm_abi)] pub struct Bar {...

I need to be able to define custom bounds, exactly like `#[serde(bounds)]`. E.g.: ```rust trait EntityKind { type KeyKind; } #[derive(serde::Serialize, typescript_type_def::TypeDef)] pub struct EntityKey { some_accessory_field: usize, kind: Kind,...