crates_search 0.1.1

Search for crates from within Rust.
Documentation

📦 crates_search

Search for crates on crates.io from within Rust with this tiny wrapper.

This was quickly thrown together and will probably not satisfy any use case besides my own. Also please be aware that it was written by an utter imbecile and Rust-novice (me 🙋‍♂️).

Example

extern crate crates_search;

fn main() {
    let crates = crates_search::search("reqwest").unwrap();
    println!("{:?}", crates);
}