Jack O'Connor
Jack O'Connor
I wanted to bisect with a feature enabled in my project. I used this command: ``` cargo bisect-rustc -- --features=c_avx512 ``` Of course, that's a mistake. I didn't realize that...
Tracking issue: https://github.com/alexcrichton/cc-rs/issues/230
I noticed that `is_flag_supported` detects failure by looking for output on stderr. I was wondering if this might be unreliable sometimes. It looks like it currently requires a tricky workaround...
String includes a number of other impls for e.g. &char and &str, and we could expand the impls here in a follow-up commit if we want.
I create a new project with proguard disabled like this: ``` $ g8 jberkel/android-app Template for Android apps in Scala package [my.android.project]: com.example.probug name [My Android Project]: ProBug main_activity [MainActivity]:...
Normal vim behavior: - Start with the line "three words here". Put the cursor on the start of "words". - Typing 'dw' deletes "words" and also the space after it....
Antonio Marcedone and Balachandar Kesavan have reported a mistake in the Bao security argument related to seeking. The security argument can be repaired without any changes to Bao, so this...
The chunk size of BLAKE3 is fixed for all of time at 1024 bytes. However, there's nothing stopping Bao from using larger "chunk groups" on the wire and on disk....
That is, I write to part of a file, and I efficiently update the root hash to reflect the write. This doesn't really make sense as a feature on the...
See https://github.com/rust-lang/cargo/issues/5364. Currently specifying `--no-default-features` to test the `no_std` build doesn't work correctly in a workspace.