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

WIP: refactor to support sync/async support #56

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrpc"
version = "0.14.1"
version = "0.15.0-rc0"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
license = "CC0-1.0"
homepage = "https://github.com/apoelstra/rust-jsonrpc/"
Expand Down Expand Up @@ -30,10 +30,16 @@ simple_uds = []
# Enable Socks5 Proxy in transport
proxy = ["socks"]

# transport implementations
tp-hyper = [ "hyper" ]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tp?


[dependencies]
async-trait = "0.1.53"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = [ "raw_value" ] }
erased-serde = "0.3.20"

base64 = { version = "0.13.0", optional = true }
socks = { version = "0.3.4", optional = true}

hyper = { version = "0.14.0", features = [ "client", "http1" ], optional = true }
Loading