aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-09-22 10:48:03 -0700
committerJoel Galenson <jgalenson@google.com>2021-09-22 10:48:03 -0700
commitb66cd5e3ae6c2658dd29835d2af9ab5a5306af37 (patch)
tree31a821c717f5b034aaa559af903261f42900944d /README.md
parentc97c5f527a4da1092800aa69850e67229a69401d (diff)
downloadanyhow-b66cd5e3ae6c2658dd29835d2af9ab5a5306af37.tar.gz
Upgrade rust/crates/anyhow to 1.0.44
Test: make Change-Id: Ib259ba78f8af86aca31c7645301b66a99340f890
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index c6eb0f1..e10063f 100644
--- a/README.md
+++ b/README.md
@@ -75,10 +75,10 @@ anyhow = "1.0"
}
```
-- If using the nightly channel, a backtrace is captured and printed with the
- error if the underlying error type does not already provide its own. In order
- to see backtraces, they must be enabled through the environment variables
- described in [`std::backtrace`]:
+- If using the nightly channel, or stable with `features = ["backtrace"]`, a
+ a backtrace is captured and printed with the error if the underlying error
+ type does not already provide its own. In order to see backtraces, they must
+ be enabled through the environment variables described in [`std::backtrace`]:
- If you want panics and errors to both have backtraces, set
`RUST_BACKTRACE=1`;