Eric Huss

Results 149 issues of Eric Huss

When there is a gitignore entry with a trailing slash, `git_index_add_all` will add symlinks that match the gitignore patterns on Windows but not other platforms. ### Reproduction steps The following...

bug
git compatibility
v.next

There have been two circumstances where a normal `@bors r+` approved an old commit: * https://github.com/rust-lang/rust/pull/95251#issuecomment-1079483432 * https://github.com/rust-lang/rust/pull/98708#issuecomment-1171587241 My hunch is that somehow bors missed the push notification, and the...

In https://github.com/rust-lang/rust/pull/82208 there was an issue where the `git merge` bors used ran into an internal git error: ``` error: add_cacheinfo failed to refresh for path 'src/tools/rustfmt/tests/target/issue-3494/crlf.rs'; merge aborting. s...

I've been lucky enough to hit "422 Update is not a fast forward" twice in the past two weeks. Not sure if it makes sense to file an issue here...

As part of a push to make rust-analyzer the official LSP for Rust, I would like to see there is any desire to transition rust-analyzer to be available on the...

A-ci
C-support

This RFC is a proposal to fix a security issue with how Cargo and Rustup discover their files. In consultation with the Security Response Working Group, we decided to disembargo...

T-cargo
proposed-final-comment-period
disposition-merge

The package at https://packagecontrol.io/packages/Rust%20Enhanced is currently marked as Missing with the following error: `Package info was unavailable last time crawler ran. Error downloading repository. HTTP exception InvalidCertificateException (Host api.github.com returned...

This adds `rust-analyzer` as a proxy. rust-analyzer is replacing RLS (see https://blog.rust-lang.org/2022/07/01/RLS-deprecation.html). As part of that process, I'd like to make rust-analyzer easier to run for non-VSCode users. The `rust-analyzer`...

This is an implementation of [RFC 3279](https://github.com/rust-lang/rfcs/pull/3279).

The following example: ```rust macro_rules! foo { () => { &1; }; } fn main() { foo!(); foo!(); } ``` generates a suggestion (on beta 1.55) to insert a fix...