roogle
roogle copied to clipboard
A Rust API search engine
Like `hoogle.haskell.org`, but for Rust.
It would make it easier to package for distro maintainers
It is possible to index user provided crates like so: ```console export RUSTDOCFLAGS="-Zunstable-options --output-format=json" cargo +nightly doc ``` Alternatively, in Rust: ```rust std::process::Command::new("cargo") .arg("+nightly") .arg("doc") .env("RUSTDOCFLAGS", "-Zunstable-options --output-format=json") .env("CARGO_TARGET_DIR", &index_dir)...
(Loving your work btw) `fn (PathBuf) -> String` returns sensible results. `fn PathBuf -> String` returns _interesting_ results. I was just wondering if the prompt should be `fn ` given...
A rustc wrapper that when it detects error message "expects X but found Y", searches roogle to offer some likely suggestions. Doing this properly might not be possible but a...
Would be cool to point this at a large workspace and have it index all the crates it finds there. I did something similar for undepend. Something like this should...
1. As the title suggests. 2. I read your parser, grammar `(xxx) -> yyy` is supported but not documented on README and the website.
maybe possible: https://codemirror.net/ and https://github.com/codemirror/lang-rust
Hi, I have known about the project for quite some time now, but was never able to kickstart the changes I wanted, yesterday I took a first step, I plan...