Mendes

Results 22 issues of Mendes

### What happened? Using this library in WASM causes the program to block forever and use 100% CPU, due to the usage of `futures_executor::block_on` ### API Version 0.24.0 ### SDK...

bug
triage:todo

**Is your feature request related to a problem? Please describe.** I wanted to have multiple clients, and one written in rust. **Describe the solution you'd like** A client capable of...

C-Musing

This allows for easier decoding of DAP outputs Using this ``` cargo run --bin dapf -- decode ./path/to/collection_output collection \ --vdaf-config '{"prio3": { "sum": { "bits": 8 } } }'...

The DAP protocol mandates that ids should be encode in base64. The code inconsistently encoded ids as hex or base64. By removing the utilities necessary for encoding ids as hex...

Decrypting reports usually happens as they are consumed, which is a CPU bound task. Not requiring async for this has a few advantages: - it can be more easily offloaded...

This adds three new methods to the API surface - `[Raw]Client::ack(AckId, D)` - `ClientBuilder::on_with_ack(Event, callback)` - `ClientBuilder::on_any_with_ack(Event, callback)` using these it's possible to receive messages that require ack and acknowledge...

I want to send from the socket io server an `emit_with_ack` event. But I don't see how I can ack from the client ```rs async fn handler(payload: Payload, socket: Client)...

Currently to determine if a task is using taskprov, we check if the request contains a taskprov advertisement but, if that fails, we also check if the task id of...