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;