Jacob Finkelman

Results 67 issues of Jacob Finkelman

As of [last week](https://github.com/rust-lang/rust/pull/118521), asan and libfuzz are available for nightly rust on MSVC! I tried it out and got things working, but with some paper cuts that could probably...

Apparently `cargo-fuzz` supports being used without sanitizers. This is mentioned on [Reddit](https://www.reddit.com/r/rust/comments/hg6x3s/cargofuzz_is_now_10x_faster_better_supports/) and in #158. After stumbling across this information I tried looking at the readme which claims: > Note:...

This is to start a conversation. I am hoping to nerd snipe someone who has the relevant knowledge into doing something I don't know how to do. I think it...

This issue is asking for the standard to be clearer about how delegations and explicitly listed targets interact. It is possible that with a full understanding of how TUF is...

The smallest can currently be obtained with `.iter().next()`, but I did not find a way to quickly get the largest. None of the iterators seem to support `.rev()`.

Std path does some weird things with UNC paths (`\\?\`). For one [std::fs::canonicalize](https://doc.rust-lang.org/std/fs/fn.canonicalize.html) always returns one whether it is needed or not. Then `path.join` will just do a string concatenation...

I maintain a `-sys` crate but my users keep getting ``` error: multiple packages link to native library `z`, but a native library can be linked only once ``` I...

I was looking at the code and it looks like bitvec.rs is unused. Should it just be removed?

You already thought of this I am sure, but the code in cargo's resolver has the line: "We should switch to persistent hash maps if we can..." So if/when this...

Hi, Loving this handy crate! I think it would be useful to document how it compares to the other things out there. Specifically, rust-embed-resource. Best!