From 86e6681e22beed0791323affde60488f79dcdeae Mon Sep 17 00:00:00 2001 From: Daniyar Itegulov Date: Mon, 24 Jul 2023 15:07:02 +1000 Subject: [PATCH] enable anyhow backtrace by default --- Cargo.lock | 3 +++ integration-tests/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 13b76003e..788a3e396 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -208,6 +208,9 @@ name = "anyhow" version = "1.0.71" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" +dependencies = [ + "backtrace", +] [[package]] name = "arbitrary" diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 5bd557bea..e93a3ee3c 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" publish = false [dependencies] -anyhow = "1.0" +anyhow = { version = "1.0", features = ["backtrace"] } bollard = "0.11" clap = { version = "4.2", features = ["derive", "env"] } ed25519-dalek = {version = "1.0.1", features = ["serde"]}