From d1f02bddd14a9ffa1147f6baacabfcd8c6116a6e Mon Sep 17 00:00:00 2001 From: Kristijan Sedlak Date: Sat, 25 Apr 2020 19:24:13 +0200 Subject: [PATCH] Fix crate version in README Examples won't work with `0.7.0`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b44381f7..34d581d3c 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ and **not ready for production yet**. Add two dependencies to your project's `Cargo.toml` file: `tide` itself, and `async-std` with the feature `attributes` enabled: ```toml # Example, use the version numbers you need -tide = "0.7.0" +tide = "0.8.0" async-std = { version = "1.5.0", features = ["attributes"] } ```