Karol Kuczmarski
Karol Kuczmarski
The default mode of operation is to look at all `[dependencies]` of the current crate. But there is little reason not to allow for searching issues in any arbitrary crate...
As [suggested on Reddit](https://www.reddit.com/r/rust/comments/7khgfl/cargocontribute_find_issues_in_your_dependencies/dreyavs/), we could further improve suggestions by making them relevant to how exactly is a dependency used in a project. Basically, if you use `Foo` type/method/etc. a...
Something like a `--bins`/`--binaries` option which operates on crates installed locally with `cargo install`. The usual suspects would be Clippy, `cargo-tree`, and of course this very project :) What's not...
Mostly a simple gist host but it seems it doesn't have a raw URL. Instead, the raw gist text is within a `div#cleartext` element in the HTML that'd have to...
This shouldn't be confused with _dpaste.de_ which is different and already implemented :) dpaste.com looks like a `Basic` gist, with simple URL patterns for both HTML and raw URLs.
This host should be a typical `Basic` host with `ghostbin.com/paste/$ID` as HTML URL format and `ghostbin.com/paste/$ID/raw` as raw URL format. IDs are digits and lowercase letters.
This is almost `Basic` pastebin that automatically creates gists out of things pasted into IRCCloud client by its user. The HTML URL format is something like https://irccloud.mozilla.com/pastebin/fqQ7iPhh/, and the raw...
https://github.com/kriomant/mockers It definitely seems more appropriate for unit tests of individual hosts, though we may still want to keep `InMemoryHost` for integration testing (if we ever have any, that is...
Okay, this one is funky. The raw gist doesn't actually seem to have an URL at all, it just shown on the HTML page via JavaScript (!). So we probably...
Straightforward `Basic` host, it seems, with the following URL patterns: * HTML: `https://nopaste.me/view/$ID` * raw: `https://nopaste.me/view/raw/$ID` ID format is `[0-9A-Za-z]+` from the looks of it. Alternate raw URL is `https://nopaste.me/view/download/$ID`,...