Naz

Results 9 issues of Naz

Is there a way to opt out of the multi-threaded runtime and ensure everything runs on a single thread? Also, is there a way to sleep?

First off, thank you guys for this repo. I've learned a lot from it. I noticed when implementing a variant of `CStream` myself I didn't need to have the item...

Is it possible to access the passed-in request body in `Then`? I'd like for the mock server to return a response based on the input. e.g: ```rust let mock =...

enhancement

I used the `AsyncSender` and `AsyncReceiver` channels and this code started panicking when using kanal. I tried it with Flume and Tokio mpsc channels and there's no issue. It happens...

### Code ```Rust // this code causes the bug #[derive(Debug, Deserialize)] #[allow(dead_code)] pub struct Response { symbol: String, } // this code fixes it (changing dead_code to unused) #[derive(Debug, Deserialize)]...

I-ICE
T-compiler
C-bug
S-needs-repro

# Problem Manually implementing `EncodeLabelSet` for a struct currently involves a lot of boilerplate: ```rust pub struct MyLabels { pub method: &'static str, // or String, Cow

Currently `Family` is defined using a `fn` pointer instead of `Fn` which is poor design: ```rust pub struct Family M> { } ``` This means that this fails to compile:...

### Describe the bug The current macro for microbatch expands to format the `event_time` as a `DateTime`. This causes SQL compilation errors if the column is stored as a `Date`...

bug