Skip to content

Commit e5730ca

Browse files
authored
Merge pull request #301 from ibaryshnikov/master
fixed build on nightly
2 parents d0b1ed8 + cd201eb commit e5730ca

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: rust
2-
rust: nightly-2019-07-08
2+
rust: nightly-2019-07-31
33

44
before_script:
55
- >

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ http-service = "0.3.0"
3131
http-service-hyper = { version = "0.4.0", optional = true }
3232
# Routing
3333
fnv = "1.0.6"
34-
route-recognizer = "0.1.12"
34+
route-recognizer = "0.1.13"
3535
# Tide components
3636
tide-cookies = { path = "./tide-cookies", optional = true, default-features = false }
3737
tide-cors = { path = "./tide-cors", optional = true, default-features = false }
@@ -73,3 +73,7 @@ members = [
7373
"tide-querystring",
7474
"tide-slog",
7575
]
76+
77+
[patch.crates-io.runtime]
78+
git = "https://github.com/rustasync/runtime"
79+
rev = "f5ac4fb"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
#![cfg_attr(any(feature = "nightly", test), feature(external_doc))]
66
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
7-
#![feature(async_await, existential_type)]
7+
#![feature(async_await)]
88
#![warn(
99
nonstandard_style,
1010
rust_2018_idioms,

tide-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ http = "0.1"
1616
http-service = "0.3.0"
1717
serde = "1.0.91"
1818
serde_json = "1.0.39"
19-
route-recognizer = "0.1.12"
19+
route-recognizer = "0.1.13"
2020

2121
[dev-dependencies]
2222
tide = { path = "../", default-features = false }

tide-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Core types and traits from Tide
22
3-
#![feature(async_await, existential_type)]
3+
#![feature(async_await)]
44
#![warn(
55
nonstandard_style,
66
rust_2018_idioms,

0 commit comments

Comments
 (0)