Fix anyhow dependency issues (#208)

- Do not require backtrace feature
- Starting version 1.0.77, anyhow gathers backtrace is std feature (enabled by default)
  is specified even if backtrace feature is not enabled.
  Therefore specify default features as false.
- Specify version 1.0.45 since that is the minimul version required to successfully
  compile regorus

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
Anand Krishnamoorthi
2024-04-20 09:57:52 -07:00
committed by GitHub
parent 72ced23366
commit de56cce7cb
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ edition = "2021"
crate-type = ["cdylib"]
[dependencies]
anyhow = "1.0.79"
anyhow = "1.0"
regorus = { path = "../.." }
serde_json = "1.0.113"