google-search 0.1.1

Open default browser to Google search results for a given query string.
Documentation
1
2
3
4
5
6
7
use google_search::search;

fn main() {
    if let Err(e) = search("Rust crates.io") {
        eprintln!("search failed: {}", e);
    }
}