Skip to content

Commit dfef176

Browse files
authored
remove http-service patches (#297)
* remove http-service patches Signed-off-by: Yoshua Wuyts <[email protected]> * try fix build Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent 3a7601f commit dfef176

File tree

8 files changed

+13
-20
lines changed

8 files changed

+13
-20
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: rust
22
rust: nightly-2019-07-08
3-
cache: cargo
43

54
before_script:
65
- >

Cargo.toml

+3-8
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ hyper = ["http-service-hyper"]
2727
[dependencies]
2828
futures-preview = "0.3.0-alpha.17"
2929
http = "0.1"
30-
http-service = "0.2.0"
31-
http-service-hyper = { version = "0.2.0", optional = true }
30+
http-service = "0.3.0"
31+
http-service-hyper = { version = "0.4.0", optional = true }
3232
# Routing
3333
fnv = "1.0.6"
3434
route-recognizer = "0.1.12"
@@ -47,7 +47,7 @@ cookie = { version = "0.12", features = ["percent-encode"] }
4747
env_logger = "0.6.1"
4848
futures-fs = "0.0.5"
4949
futures-util-preview = { version = "0.3.0-alpha.17", features = ["compat"] }
50-
http-service-mock = "0.2.0"
50+
http-service-mock = "0.3.0"
5151
juniper = "0.13.0"
5252
log = "0.4.6"
5353
log4rs = "0.8.3"
@@ -73,8 +73,3 @@ members = [
7373
"tide-querystring",
7474
"tide-slog",
7575
]
76-
77-
[patch.crates-io]
78-
http-service = { git = "https://github.com/rustasync/http-service", branch = "master" }
79-
http-service-hyper = { git = "https://github.com/rustasync/http-service", branch = "master" }
80-
http-service-mock = { git = "https://github.com/rustasync/http-service", branch = "master" }

tide-compression/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ accept-encoding = "0.2.0-alpha.2"
1919
bytes = "0.4.12"
2020
futures-preview = "0.3.0-alpha.17"
2121
http = "0.1"
22-
http-service = "0.2.0"
22+
http-service = "0.3.0"
2323

2424
[dependencies.async-compression]
2525
default-features = false
@@ -28,4 +28,4 @@ version = "0.1.0-alpha.1"
2828

2929
[dev-dependencies]
3030
tide = { path = "../", default-features = false }
31-
http-service-mock = "0.2.0"
31+
http-service-mock = "0.3.0"

tide-cookies/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ repository = "https://github.com/rustasync/tide"
1414
cookie = { version = "0.12", features = ["percent-encode"] }
1515
futures-preview = "0.3.0-alpha.17"
1616
http = "0.1"
17-
http-service = "0.2.0"
17+
http-service = "0.3.0"
1818
tide-core = { path = "../tide-core", default-features = false }
1919

2020
[dev-dependencies]
2121
tide = { path = "../", default-features = false }
22-
http-service-mock = "0.2.0"
22+
http-service-mock = "0.3.0"

tide-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repository = "https://github.com/rustasync/tide"
1313
[dependencies]
1414
futures-preview = "0.3.0-alpha.17"
1515
http = "0.1"
16-
http-service = "0.2.0"
16+
http-service = "0.3.0"
1717
serde = "1.0.91"
1818
serde_json = "1.0.39"
1919
route-recognizer = "0.1.12"

tide-cors/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ edition = "2018"
1616
[dependencies]
1717
futures-preview = "0.3.0-alpha.17"
1818
http = "0.1"
19-
http-service = "0.2.0"
19+
http-service = "0.3.0"
2020
tide-core = { path = "../tide-core" }
2121

2222
[dev-dependencies]
2323
tide = { path = "../" }
24-
http-service-mock = "0.2.0"
24+
http-service-mock = "0.3.0"

tide-forms/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ version = "0.1.0"
1818

1919
[dependencies]
2020
tide-core = { path = "../tide-core", default-features = false }
21-
http-service = "0.2.0"
21+
http-service = "0.3.0"
2222
futures-preview = "0.3.0-alpha.17"
2323
http = "0.1"
2424
log = "0.4.6"

tide-querystring/Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,5 @@ serde_urlencoded = "0.5.5"
2626

2727
[dev-dependencies]
2828
tide = { path = "../", default-features = false }
29-
http-service = "0.2.0"
30-
http-service-mock = "0.2.0"
31-
29+
http-service = "0.3.0"
30+
http-service-mock = "0.3.0"

0 commit comments

Comments
 (0)