add anyhow to workspace dependency

This commit is contained in:
pedrocarlo 2025-06-09 19:01:56 -03:00
parent a4237dbe6e
commit b942414bb4
4 changed files with 5 additions and 4 deletions

4
Cargo.lock generated
View file

@ -152,9 +152,9 @@ dependencies = [
[[package]]
name = "anyhow"
version = "1.0.97"
version = "1.0.98"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
[[package]]
name = "arrayref"

View file

@ -56,6 +56,7 @@ strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"
serde = "1.0"
serde_json = "1.0"
anyhow = "1.0.98"
[profile.release]
debug = "line-tables-only"

View file

@ -19,7 +19,7 @@ path = "main.rs"
[dependencies]
anyhow = "1.0.75"
anyhow.workspace = true
cfg-if = "1.0.0"
clap = { version = "4.5.31", features = ["derive"] }
clap_complete = { version = "=4.5.47", features = ["unstable-dynamic"] }

View file

@ -15,7 +15,7 @@ name = "integration_tests"
path = "integration/mod.rs"
[dependencies]
anyhow = "1.0.75"
anyhow.workspace = true
env_logger = "0.10.1"
limbo_core = { path = "../core" }
rusqlite = { version = "0.34", features = ["bundled"] }