From be5244197f2a858912c0d317f30972edb67a4c0c Mon Sep 17 00:00:00 2001 From: Aaron Kelly Date: Sun, 10 May 2020 12:12:57 +0100 Subject: [PATCH] Update basic.md The full example has at https://github.com/hyperium/hyper/blob/master/examples/client.rs will not compile straight away, as it has an additional dependency which is not mentioned in the guide --- _guides/client/basic.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_guides/client/basic.md b/_guides/client/basic.md index 66b0d2a..b4c8d78 100644 --- a/_guides/client/basic.md +++ b/_guides/client/basic.md @@ -12,6 +12,7 @@ Let's tell Cargo about our dependencies by having this in the Cargo.toml. [dependencies] hyper = "0.13" tokio = { version = "0.2", features = ["full"] } +pretty_env_logger = "0.4.0" ``` Now, we are ready to import the dependencies in our Rust file.