Adam Spofford

Results 25 issues of Adam Spofford

I have an internally tagged enum where one variant should be considered the 'default'. If the tag is not present, the default variant should be selected and deserialized from the...

It is good practice, with associated lints, to put `# Safety` on any unsafe function, prefix any unsafe block with `// SAFETY:`, and use explicit unsafe blocks even in unsafe...

Reqwest supports a WebAssembly backend, and only minimal changes are required to support it. Namely, TLS is moved to its own feature, and cfgs are added to not require WASM...

Would it be possible for cargo-udeps to detect that it is not being run on nightly, and re-run itself with nightly, to avoid the user needing to remember to `+nightly`...

### Checklist - [X] I've looked through the [issues and pull requests](https://github.com/cross-rs/cross/issues?q=) for similar request - [ ] This feature could be solved with a [custom docker image](https://github.com/cross-rs/cross#custom-docker-images) (optional) ###...

feature-request

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Rust Version rustc 1.73.0 (cc66ad468 2023-10-03)...

C-bug
A-parsing
S-waiting-on-design

This PR adds IntoFuture impls for all async task builders, meaning `await` can be used without having to call `call_and_wait()` first. This also required changing `*SyncCall`'s generic parameter to a...

The primary target of this PR is updating the URLs that the root key is fetched for to include icp-api.io and icp0.io, while making the default port 4943, but I...

It would be great if you could modify the invocation slightly, say by putting another `/` outside the string literal, to have all the paths be `/{path}` instead of just...

This adds `dfx killall`, which kills any processes that dfx starts, in case something is misbehaving. Implements SDK-1077.