From e96cc7e53fa866df802b7e1d8b3aa0bd290f2e3f Mon Sep 17 00:00:00 2001 From: kkthmyh <34261479+kkthmyh@users.noreply.github.com> Date: Mon, 27 Mar 2023 04:12:41 +0800 Subject: [PATCH] chore: add eyre dependency (#2305) --- book/getting-started/start_a_new_project.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/book/getting-started/start_a_new_project.md b/book/getting-started/start_a_new_project.md index a1e58178b..9cf171819 100644 --- a/book/getting-started/start_a_new_project.md +++ b/book/getting-started/start_a_new_project.md @@ -21,6 +21,8 @@ To set up a new project with ethers-rs, you will need to install the Rust progra # Since Rust doesn't provide an async runtime itself, you can # include the excellent tokio library tokio = { version = "1.23.0", features = ["macros"] } + # Flexible concrete Error Reporting type built on std::error::Error with customizable Reports + eyre = "0.6.8" ``` If you want to make experiments and/or play around with early ethers-rs features link our GitHub repo in the `Cargo.toml`.