Skip to content
This repository has been archived by the owner on Nov 29, 2022. It is now read-only.

Commit

Permalink
fix: remove the anyhow backtrace feature
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
huitseeker committed Aug 8, 2022
1 parent 4107acf commit 0f0f01b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/typed-store-macros-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish = false
syn = { version = "1.0.64", features = ["derive"] }
quote = "1.0.9"
proc-macro2 = "1.0.24"
anyhow = { version = "1.0.58", features = ["backtrace"] }
anyhow = { version = "1.0.58" }
typed-store = {path = "../typed-store"}
tempfile = "3.3.0"
tokio = { version = "1.20.0", features = ["sync", "macros", "rt"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/typed-store-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ proc-macro = true
syn = { version = "1.0.64", features = ["derive"] }
quote = "1.0.9"
proc-macro2 = "1.0.24"
anyhow = { version = "1.0.58", features = ["backtrace"] }
anyhow = { version = "1.0.58"}
typed-store = {path = "../typed-store"}
tokio = { version = "1.20.0", features = ["sync", "macros", "rt"] }
tempfile = "3.3.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/typed-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tokio = { version = "1.20.1", features = ["sync", "macros", "rt"] }
thiserror = "1.0.31"
collectable = "0.0.2"
fdlimit = "0.2.1"
anyhow = { version = "1.0.58", features = ["backtrace"] }
anyhow = { version = "1.0.58" }
pre = "0.2.0"

[dev-dependencies]
Expand Down

0 comments on commit 0f0f01b

Please sign in to comment.