Skip to content

Commit 4af3760

Browse files
committed
fix: remove the anyhow backtrace feature
the workspace-hack from cargo-hakari unifies the versions we use to a major version number (1) => we hit dtolnay/anyhow#250 This removes the `backtrace` feature.
1 parent 4107acf commit 4af3760

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/typed-store-macros-tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ publish = false
1313
syn = { version = "1.0.64", features = ["derive"] }
1414
quote = "1.0.9"
1515
proc-macro2 = "1.0.24"
16-
anyhow = { version = "1.0.58", features = ["backtrace"] }
16+
anyhow = { version = "1.0.58" }
1717
typed-store = {path = "../typed-store"}
1818
tempfile = "3.3.0"
1919
tokio = { version = "1.20.0", features = ["sync", "macros", "rt"] }

crates/typed-store-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ proc-macro = true
1515
syn = { version = "1.0.64", features = ["derive"] }
1616
quote = "1.0.9"
1717
proc-macro2 = "1.0.24"
18-
anyhow = { version = "1.0.58", features = ["backtrace"] }
18+
anyhow = { version = "1.0.58"}
1919
typed-store = {path = "../typed-store"}
2020
tokio = { version = "1.20.0", features = ["sync", "macros", "rt"] }
2121
tempfile = "3.3.0"

crates/typed-store/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tokio = { version = "1.20.1", features = ["sync", "macros", "rt"] }
1919
thiserror = "1.0.31"
2020
collectable = "0.0.2"
2121
fdlimit = "0.2.1"
22-
anyhow = { version = "1.0.58", features = ["backtrace"] }
22+
anyhow = { version = "1.0.58" }
2323
pre = "0.2.0"
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)