Bill Fraser

Results 13 issues of Bill Fraser

Example root/Cargo.toml: ``` ... [dependencies] path-dependency = { path = "path-dependency" } ``` root/path-dependency/Cargo.toml: ``` ... [dev-dependencies] env_logger = "*" ``` Running `cargo outdated -v` gives: ``` Parsing... current workspace...

T: bug
C: manifest parsing

I'm working on a project that consumes rls-analysis data to analyze programs, and one issue I've hit a few times is that it's pretty common for a project to have...

This is an alternative to #713 which doesn't make breaking changes to any public interfaces. This allows a caller to invoke the filter and manually specify a remote address, since...

String::from_utf8 doesn't interpret its input as a null-terminated string, so since these are just static buffers of bytes, it ends up pulling in large numbers of zero-bytes at the end.

like the one in std: https://doc.rust-lang.org/std/macro.option_env.html If the var isn't there, it returns None, instead of raising a compile error. There doesn't seem to be a way to do this...

enhancement

They are different from tokens obtained with the PKCE flow, and need the client secret to be provided again along with the refresh token when obtaining new tokens. ## **Checklist**...

The new features controlling this are `async_routes` which enables compiling the async functions, and and `default_async_client` which enables a default HTTP client based on reqwest. For most current use cases...

**Why is this feature valuable to you? Does it solve a problem you're having?** On spec update, we run the tests for the current version against code generated for the...

enhancement

#### What is the purpose of this change? This lets you, for example, use shared folders without mounting them into your home namespace first, as long as you know their...

To reproduce: 1. Make a cache filesystem image using ext2 with default parameters, and mount the cache somewhere like normal. 2. Run backfs as a _non-root_ user, using the cache...

Bug