oauth1-request 0.6.1

Yet yet yet another OAuth 1.0 client library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Test for <https://github.com/tesaguri/oauth1-request-rs/pull/9>.

#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
use wasm_bindgen_test::wasm_bindgen_test as test;

#[test]
fn pull_9() {
    let _ = oauth1_request::get(
        "",
        &(),
        &oauth_credentials::Token::from_parts("", "", "", ""),
        oauth1_request::PLAINTEXT,
    );
}