Kriskras99

Results 13 issues of Kriskras99

As the title says. The `Cow` implementation is really useful and I don't like pointing Cargo.toml to git repositories. Thanks!

As the title indicates I was wondering if there's anyway to prevent `cargo nextest list` from listing every individual file? I have a few thousand (!) test files belonging to...

help wanted

### Summary If you set your lints in the workspace `Cargo.toml`, the `lint_groups_priority` lint does not work. ### Lint Name lint_groups_priority ### Reproducer I tried this code: ```toml [workspace.lints.clippy] cargo...

C-bug
I-false-negative

### Problem I expect to be able to set lints.workspace to false to explicitly opt out of the workspace lints. Currently this is not allowed. It would also be helpful...

C-feature-request
A-workspace-inheritance
S-triage
A-lints-table

Hi, I'm the maintainer of the AUR packages [python-frida](https://aur.archlinux.org/packages/python-frida) and [python-frida-tools](https://aur.archlinux.org/packages/python-frida-tools). In between 16.2.1 and 16.2.4 the `FRIDA_CORE_DEVKIT` variable for the build tool stopped working. See [this PKGBUILD](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=python-frida&id=d4a195c17f49ee71304495fb2ded2bd5e39d90c2) on how...

### Input C/C++ Header The original header is from Julia 1.10. ```C++ _Atomic(int) a; ``` ### Bindgen Invocation The original build.rs is in https://github.com/Kriskras99/julia-rs/blob/master/julia-sys/build.rs ```Rust bindgen::Builder::default() .header("wrapper.h") .clang_arg(format!("-I{include_dir}")) .allowlist_recursively(false) .allowlist_item("_*[Jj][Ll].*")...

This implementation is simplified compared to the previous one. It is also almost twice as slow in [the exhaustive test](https://github.com/immunant/c2rust/issues/1126#issuecomment-2354876003) (15 vs 25 seconds). However, in real sort usage the...

Seems one (or more) of the types used in the transpiler have a wrong `Ord` implementation. ``` Transpiling cr.c thread 'main' panicked at core/src/slice/sort/shared/smallsort.rs:860:5: user-provided comparison function does not correctly...

bug