Gurinder Singh
Gurinder Singh
If I try a `HEAD` request on any file that `simple_http_server` is serving, it always returns the `Content-Length` header with value 0. If I try the GET request on the...
Currently [`read_message()`](https://docs.rs/tungstenite/0.13.0/tungstenite/protocol/struct.WebSocket.html#method.read_message) and [`write_message()`](https://docs.rs/tungstenite/0.13.0/tungstenite/protocol/struct.WebSocket.html#method.write_message) work with a `Message` [which carries data in a `Vec` or a `String`](https://docs.rs/tungstenite/0.13.0/tungstenite/protocol/enum.Message.html). This means that an allocation will happen every time a message is read...
Please allow a custom partitioner to be set in Streamiz as we can do in Confluent.Kafka's ProducerBuilder? My requirement is that when my topology emits events it needs to use...
Currently you cannot use the reserved token `YUNIQL_DB_NAME` in scripts like this: ```SQL Use [${YUNIQL_DB_NAME}] ``` because Yuniql doesn't replace it in scripts. The result is that you have to...
Currently we hold a lot of heap allocated pointers which we're just dropping on the floor when done with them. To fix that we should expose a type called `EfiBox`...
Currently we do not clean heap allocated pointers given to us by UEFI at many please (such as `DevicePath`). Use `EfiBox` to store these pointers which will ensure they're cleaned...
Currently we have a separate `virtfs_efi` crate which offers a way to create a virtual, possibly in-memory file system. It does this by implementing the SIMPLE_FILE_SYSTEM protocol. Perhaps it's a...
In the `events` module only `Timer` is currently implement. Implement other event types as well
Current the following are not implemented: - Udp read - Tcp read - Tcp write Implement them
Instead of carrying around copies of `std::io` types in our code see if we can make use of core_io: https://github.com/jethrogb/rust-core_io