Skip to content
This repository was archived by the owner on Jan 2, 2020. It is now read-only.

Commit c12a4fb

Browse files
Merge pull request #2 from coblox/rename-crate
Rename library to jsonrpc_client
2 parents 8bfe179 + 6e229c7 commit c12a4fb

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "jsonrpc"
2+
name = "jsonrpc_client"
33
version = "0.1.0"
44
authors = [
55
"Thomas Eizinger <[email protected]>",
@@ -11,10 +11,7 @@ description = "Client library for talking to JsonRPC APIs."
1111
license = "MIT OR Apache-2.0"
1212
repository = "https://github.com/coblox/jsonrpc_rust_client"
1313
categories = ["network-programming", "web-programming::http-client"]
14-
keywords = ["jsonrpc", "http"]
15-
16-
[badges]
17-
travis-ci = { repository = "coblox/jsonrpc_rust_client" }
14+
keywords = ["jsonrpc", "http", "client"]
1815

1916
[dependencies]
2017
reqwest = "0.8.8"

examples/hello_world.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
extern crate jsonrpc;
1+
extern crate jsonrpc_client;
22

3-
use jsonrpc::*;
3+
use jsonrpc_client::*;
44

55
/// A trait defining the API you want to talk to. Not strictly necessary but nice for mocking.
66
trait HelloWorldApi {

0 commit comments

Comments
 (0)