Daiki Mizukami
Daiki Mizukami
You can use [`http_serde::uri`]. [`http_serde::uri`]:
Rebased onto master and updated the commit to retain `from_shared` functions for now to make the diff concise and easy to review.
If you really want a `str` slice rather than an `impl Display`, you can allocate a buffer on the stack and write the status code into it, since we know...
I did a quick experiment on implementing a part of the proposed API and I realized some oversights in the proposal. > removing `clone_body` from `Policy` lets us remove the...
Those body types (maybe except for `Streaming` and `GenericBody`?) seem to be unspecific to `hyper` and to be able to be implemented in `http-body` or somewhere. They can be generic...
I have written a macro as a workaround for `#[cfg]` attributes on enum variants and fields. What this does is to rewrite something like this: ```rust enum Foo { #[cfg(a)]...
Upgraded `tower-http` to `^0.3`. The CI failure seems to be due to a dependency's MSRV bump and not to be related to this change.
Changing `clone_body` to `clone_request` means that implementors of `Policy` will have to handle cloning of `method`, `uri`, `version` and `headers`, which seems a little burdensome for them. We may be...
> I think that the list "include" should also be mandatory for publishing. Usually you don't want to publish examples, tests and sample data: Aren't `examples` and `tests` technically part...
As a side note, in JSON-LD 1.1 (but not in 1.0), you could [type-scope] the `item` term like the following, so that the term expands to a `@list` in an...