Skip to content
This repository was archived by the owner on Sep 4, 2024. It is now read-only.

Commit b8624d7

Browse files
committed
REFACTOR: Change design to be central on the Request struct
1 parent 52fc6ea commit b8624d7

9 files changed

+901
-510
lines changed

Cargo.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonrpc"
3-
version = "0.14.1"
3+
version = "0.15.0-rc0"
44
authors = ["Andrew Poelstra <[email protected]>"]
55
license = "CC0-1.0"
66
homepage = "https://github.com/apoelstra/rust-jsonrpc/"
@@ -30,10 +30,16 @@ simple_uds = []
3030
# Enable Socks5 Proxy in transport
3131
proxy = ["socks"]
3232

33+
# transport implementations
34+
tp-hyper = [ "hyper" ]
3335

3436
[dependencies]
37+
async-trait = "0.1.53"
3538
serde = { version = "1", features = ["derive"] }
3639
serde_json = { version = "1", features = [ "raw_value" ] }
40+
erased-serde = "0.3.20"
3741

3842
base64 = { version = "0.13.0", optional = true }
3943
socks = { version = "0.3.4", optional = true}
44+
45+
hyper = { version = "0.14.0", features = [ "client", "http1" ], optional = true }

0 commit comments

Comments
 (0)