Ben Kimock
Ben Kimock
On `nightly-2022-01-18` and later this crate no longer builds because `llvm_asm!` was removed in https://github.com/rust-lang/rust/pull/92816. And `asm!` is available on beta since 2022-01-13. I might take a shot at a...
Honestly I think I made it worse in the meantime :/ ``` ╭ ➜ ben@archlinux:~/fls ╰ ➤ ./target/release/fls -lL Unable to access 'broken': No such file or directory total 1156...
Just out of curiosity I cloned the repo and changed all the writes to an internal String buffer, and added one last write at the very end to dump the...
> so although I haven't managed to make it work on my own machine If you can point out to me what's going wrong I might be able to fix...
The code you're looking for is probably here: https://github.com/saethlin/crater-at-home/blob/7b5d996013e7c6b1895f23c5342abb13da984cd9/src/sync.rs#L67-L81
You're saying API but this is just a static site served out of an S3 bucket behind CloudFront. I'm definitely not opposed to having more pages. Just making sure you...
:shrug: I'm much more interested in #7 than this, because the primary site now has every crate on crates.io and it's still decently usable. But I'll probably take any PR...
I've adjusted the path computations in the web pages, so this can be served straight out of an S3 bucket without issue. Maybe that alleviates any desire to have orchestration...
I've been mulling over sticking this whole thing into a database to make it easier to query, but the internet says that for such huge chunks of what is just...
I think you can print anything including arbitrary ADTs if you can produce an implementation of `fmt::Write` which only requires that you be able to write bytes. ```rust use core::fmt;...