Skip to content

Commit 86eeb2a

Browse files
bors[bot]doitian
andauthored
Merge #3016
3016: chore(deps): enable hyper http1 for miner r=quake,driftluo,yangby-cryptape a=doitian ### What problem does this PR solve? Problem Summary: `cargo publish` fails because hyper Client is available when enabling feature http1. ### What is changed and how it works? What's Changed: Enable feature http1 for hyper in miner/Cargo.toml - Already cherry-picked to rc/v0.100 ### Check List <!--REMOVE the items that are not applicable--> Tests <!-- At least one of them must be included. --> - Manual test (add detailed scripts or steps below) Run `cargo publish --dry-run` in sub-directory `miner`. ### Release note <!-- Choose from None, Title Only and Note. Bugfixes or new features need a release note. --> ```release-note None: Exclude this PR from the release note. ``` Co-authored-by: ian <[email protected]>
2 parents 2beab53 + 5c940e4 commit 86eeb2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rand_distr = "0.3"
2020
serde = { version = "1.0", features = ["derive"] }
2121
serde_json = "1.0"
2222
ckb-jsonrpc-types = { path = "../util/jsonrpc-types", version = "= 0.100.0-pre" }
23-
hyper = "0.14"
23+
hyper = { version = "0.14", features = ["http1"] }
2424
hyper-tls = "0.5"
2525
futures = "0.3"
2626
lru = "0.6.0"

0 commit comments

Comments
 (0)