Unnamed repository; edit this file 'description' to name the repository.
Bump anyhow
Laurențiu Nicola 2023-11-15
parent 57ef70c · commit dfc885e
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml1
-rw-r--r--crates/load-cargo/Cargo.toml4
-rw-r--r--crates/project-model/Cargo.toml2
-rw-r--r--crates/rust-analyzer/Cargo.toml2
-rw-r--r--xtask/Cargo.toml2
6 files changed, 8 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index fcb188c0df..f2e99e7771 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -28,9 +28,9 @@ dependencies = [
[[package]]
name = "anyhow"
-version = "1.0.71"
+version = "1.0.75"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
+checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
[[package]]
name = "arbitrary"
diff --git a/Cargo.toml b/Cargo.toml
index c382a5a37d..789d423ac2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -90,6 +90,7 @@ la-arena = { version = "0.3.1" }
lsp-server = { version = "0.7.4" }
# non-local crates
+anyhow = "1.0.75"
smallvec = { version = "1.10.0", features = [
"const_new",
"union",
diff --git a/crates/load-cargo/Cargo.toml b/crates/load-cargo/Cargo.toml
index f041ca88ac..26cfe8ead4 100644
--- a/crates/load-cargo/Cargo.toml
+++ b/crates/load-cargo/Cargo.toml
@@ -11,13 +11,13 @@ authors.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-anyhow = "1.0.62"
+anyhow.workspace = true
crossbeam-channel = "0.5.5"
itertools = "0.10.5"
tracing = "0.1.35"
ide.workspace = true
-ide-db.workspace =true
+ide-db.workspace = true
proc-macro-api.workspace = true
project-model.workspace = true
tt.workspace = true
diff --git a/crates/project-model/Cargo.toml b/crates/project-model/Cargo.toml
index 75977fc5b0..99314ec889 100644
--- a/crates/project-model/Cargo.toml
+++ b/crates/project-model/Cargo.toml
@@ -16,10 +16,10 @@ tracing = "0.1.35"
rustc-hash = "1.1.0"
cargo_metadata = "0.15.0"
semver = "1.0.14"
+anyhow.workspace = true
serde_json.workspace = true
serde.workspace = true
triomphe.workspace = true
-anyhow = "1.0.62"
la-arena.workspace = true
itertools = "0.10.5"
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml
index c85b3e53cd..0af48b0c9a 100644
--- a/crates/rust-analyzer/Cargo.toml
+++ b/crates/rust-analyzer/Cargo.toml
@@ -19,7 +19,7 @@ name = "rust-analyzer"
path = "src/bin/main.rs"
[dependencies]
-anyhow = "1.0.62"
+anyhow.workspace = true
crossbeam-channel = "0.5.5"
dissimilar = "1.0.4"
itertools = "0.10.5"
diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml
index 7a34617e25..d32bfe856d 100644
--- a/xtask/Cargo.toml
+++ b/xtask/Cargo.toml
@@ -7,7 +7,7 @@ edition = "2021"
rust-version.workspace = true
[dependencies]
-anyhow = "1.0.62"
+anyhow.workspace = true
flate2 = "1.0.24"
write-json = "0.1.2"
xshell = "0.2.2"