Nik Clayton
Nik Clayton
If you've got a crate in a workspace you can build it either by: ``` workspace-root% cargo build -p my-crate ``` or ``` workspace-root% cd my-crate my-crate% cargo build ```...
Both type parameters are still AsRef, but this allows for the first and second arguments to be different types, as long as they both implement AsRef. Previously, they had to...
When displaying / distinguishing traces by name or colour consider the service.namespace and service.instance.id tags if present. This helps distinguishes traces that span multiple processes that make up the same...
The latest W3C draft supports injecting the trace context in to an HTTP response. https://w3c.github.io/trace-context/#trace-context-http-response-headers-format This is the same format as the request context, except: 1. There's no `tracestate` header....
**Checklist** - [x] I checked [all open bugs](https://github.com/octokit/rest.js/issues?q=is%3Aissue+label%3Abug) and none of them matched my problem. **Environment** - [x] https://api.github.com **Versions** ``` ├── @octokit/[email protected] ``` and: ``` ├── @actions/[email protected] ├── @actions/[email protected]...
Trying to call `usergroups::list` returns a `MalformedResponse` error. In my case this is because the value for the `user_count` field is an int, not a string. I assume the schema...
If dfx sent out a user-agent header in the HTTP request we could log that, and could then tell you which versions of dfx were being used, so you would...
**Is your feature request related to a problem? Please describe.** I have an HTTP server built using Hyper. One of the metrics I track is the number of active connections...
The json5 crate (https://github.com/callum-oakley/json5-rs) ships with a Pest grammar for json5 in the src/ directory (https://github.com/callum-oakley/json5-rs/tree/master/src). This is included in `de.rs` (https://github.com/callum-oakley/json5-rs/blob/master/src/de.rs#L12-L14) like so: ``` #[derive(Parser)] #[grammar = "json5.pest"] struct...