Skip to content

Commit 771340e

Browse files
authored
Enable tcp feature of hyper by default. (#637)
1 parent 17883c0 commit 771340e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ trim_trailing_whitespace=true
99
max_line_length=120
1010
insert_final_newline=true
1111

12-
[{.travis.yml,appveyor.yml}]
12+
[{.travis.yml,appveyor.yml,.gitlab-ci.yml}]
1313
indent_style=space
1414
indent_size=2
1515
tab_width=8

.gitlab-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ variables: &default-vars
1010
script:
1111
- cargo build --all
1212
- cargo test --all
13+
- cargo build --manifest-path ./core-client/Cargo.toml --no-default-features --features http
1314

1415
.only: &only
1516
only:

core-client/transports/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ serde = { version = "1.0", features = ["derive"] }
4444
serde_json = "1.0"
4545
url = "1.7"
4646

47-
hyper = { version = "0.14", features = ["client", "http1"], optional = true }
47+
hyper = { version = "0.14", features = ["client", "http1", "tcp"], optional = true }
4848
hyper-tls = { version = "0.5", optional = true }
4949
jsonrpc-server-utils = { version = "18.0.0", path = "../../server-utils", optional = true }
5050
parity-tokio-ipc = { version = "0.9", optional = true }

0 commit comments

Comments
 (0)