aboutsummaryrefslogtreecommitdiff
path: root/crates/stdx/Cargo.toml
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-01-14 11:55:13 +0000
committerAleksey Kladov <[email protected]>2021-01-14 11:55:13 +0000
commit865e05b5b47d3e27e8fe4458662e751e492a0f51 (patch)
treeaf450e09e10f59f3825c775c0d5ee0f3424cf57f /crates/stdx/Cargo.toml
parentdd5b3cd6f08ece075d1e3ad7c456b1eb7d289d88 (diff)
Make printin the backtrace more convenient
Diffstat (limited to 'crates/stdx/Cargo.toml')
-rw-r--r--crates/stdx/Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/stdx/Cargo.toml b/crates/stdx/Cargo.toml
index 8d7a51156..c47e8d0a8 100644
--- a/crates/stdx/Cargo.toml
+++ b/crates/stdx/Cargo.toml
@@ -10,4 +10,9 @@ edition = "2018"
10doctest = false 10doctest = false
11 11
12[dependencies] 12[dependencies]
13backtrace = { version = "0.3.44", optional = true }
13# Think twice before adding anything here 14# Think twice before adding anything here
15
16[features]
17# Uncomment to enable for the whole crate graph
18# default = [ "backtrace" ]