Stephen M. Coakley

Results 115 comments of Stephen M. Coakley

It looks like adding the exact same settings to define commands in the workspace-specific `settings.json` also works in the global `settings.json`. Paths are still relative to the current workspace though.

Good question, I'm not sure that it would be feasible to toggle on a per-file basis, but it might be possible to have a list of file extensions where you...

The closure passed to `write_function` borrows `dst`. The `transfer` object holds onto that closure until the transfer is dropped, meaning that `dst` is also now borrowed until `transfer` is dropped....

The bundled version of libcurl included in the crate is not compiled with brotli support by default. We would accept a PR to add brotli support behind an optional crate...

We support linking against libcurl versions older than 7.56.0 (when the mime API was added) so this will need to be behind an opt-in feature to avoid breaking compatibility with...

I'm not able to reproduce this error. It might help to know what Linux distribution you are using. I can build for musl just fine in my Linux environments (with...

This is an interesting proposal, thanks for writing it up. I'll have to think on this.

I've created this experimental proc-macro to somewhat mimic this behavior suitable for libraries: . Not as good as the real deal but hopefully almost as useful.

This is certainly something we could do, but most of the examples would be similar to the [offical curl examples](https://curl.se/libcurl/c/example.html) since this library is mostly a 1-to-1 wrapper around that....

Welcome to Rust! curl-rust is not an application that can be run, so you cannot use `cargo run` as there is no `main` function to run. Rather, curl-rust is a...