Skip to content

Commit 484d667

Browse files
committed
update docs
1 parent bac077b commit 484d667

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name = "jsonrpc_v2_client"
33
version = "0.1.0"
44
authors = ["jhaboic <josiphaboic@gmail.com>"]
55
edition = "2018"
6+
repository = "https://github.com/BitFields/jsonrpc_v2_client"
7+
keywords = ["jsonrpc", "client", "rpc", "json"]
8+
description = "JSONRPC Client based on async-std"
9+
license = "Apache-2.0"
10+
readme = "README.md"
611

712
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
813

src/lib.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,9 @@ impl APIKey {
5252

5353
}
5454

55-
/// Service address container containing `url` and `endpoint`
56-
/// `url` is server host in the form of 127.0.0.1:8080
55+
/// Service address container containing `url` and `endpoint` fields
56+
/// `url` is server host in the form of 127.0.0.1:8080
5757
/// `endpoint` is service endpoint route like /api
58-
/// So to access service at http://127.0.0.1:8082/api ServiceAddress
59-
/// needs to be ServiceAddress::new("127.0.0.1:8082", "/api")
6058
///
6159
/// # Examples
6260
///

0 commit comments

Comments
 (0)