36 releases

0.18.0 Apr 12, 2024
0.17.0 Jan 2, 2024
0.16.0 Jun 29, 2023
0.14.0 Nov 29, 2022
0.6.2 Nov 23, 2015

#3 in #json-rpc-client

Download history 4377/week @ 2023-12-25 6544/week @ 2024-01-01 10869/week @ 2024-01-08 10027/week @ 2024-01-15 12355/week @ 2024-01-22 14901/week @ 2024-01-29 12562/week @ 2024-02-05 11179/week @ 2024-02-12 11554/week @ 2024-02-19 10782/week @ 2024-02-26 13943/week @ 2024-03-04 14428/week @ 2024-03-11 15338/week @ 2024-03-18 14491/week @ 2024-03-25 13180/week @ 2024-04-01 11186/week @ 2024-04-08

54,965 downloads per month
Used in 108 crates (27 directly)

CC0 license

81KB
2K SLoC

Status

Rust Version compatibility

This library is compatible with Rust 1.48.0 or higher.

However, if you want to use the library with 1.41, you will need to pin a couple of our dependencies:

cargo update -p serde --precise 1.0.156
cargo update -p syn --precise 1.0.107

before building. (And if your code is a library, your downstream users will need to run these commands, and so on.)

Rust JSONRPC Client

Rudimentary support for sending JSONRPC 2.0 requests and receiving responses.

As an example, hit a local bitcoind JSON-RPC endpoint and call the uptime command.

use jsonrpc::Client;
use jsonrpc::simple_http::{self, SimpleHttpTransport};

fn client(url: &str, user: &str, pass: &str) -> Result<Client, simple_http::Error> {
    let t = SimpleHttpTransport::builder()
        .url(url)?
        .auth(user, Some(pass))
        .build();

    Ok(Client::with_transport(t))
}

// Demonstrate an example JSON-RCP call against bitcoind.
fn main() {
    let client = client("localhost:18443", "user", "pass").expect("failed to create client");
    let request = client.build_request("uptime", None);
    let response = client.send_request(request).expect("send_request failed");

    // For other commands this would be a struct matching the returned json.
    let result: u64 = response.result().expect("response is an error, use check_error");
    println!("bitcoind uptime: {}", result);
}

Githooks

To assist devs in catching errors before running CI we provide some githooks. If you do not already have locally configured githooks you can use the ones in this repository by running, in the root directory of the repository:

git config --local core.hooksPath githooks/

Alternatively add symlinks in your .git/hooks directory to any of the githooks we provide.

Dependencies

~0.7–1.7MB
~36K SLoC