orcid 0.1.0

A wrapper around the ORCID API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use orcid::*;

fn main() {
    let client = Client::new();
    //let author = client.author("0000-0001-5916-0947".to_string()).unwrap();
    //println!("{}", author.credit_name().unwrap());
    println!(
        "{:?}",
        client
            .search_doi(&"10.1038/NATURE11174".to_string())
            .unwrap()
    );
}