From 7112b79859854cce351df2ae13ce8de99ff2d58b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Sommer?= Date: Sat, 25 Aug 2018 16:07:12 +0200 Subject: [PATCH] Add hyper for new version of ruma-api --- Cargo.toml | 1 + src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9c27751c..0431d930 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ version = "0.1.0" [dependencies] futures = "0.1.21" http = "0.1.5" +hyper = "0.12" ruma-api = "0.5.0" ruma-api-macros = "0.2.2" ruma-events = "0.10.0" diff --git a/src/lib.rs b/src/lib.rs index 0edbb06c..7a62c6f9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,6 +7,7 @@ extern crate futures; extern crate http; +extern crate hyper; extern crate ruma_api; extern crate ruma_api_macros; extern crate ruma_events;