Unnamed repository; edit this file 'description' to name the repository.
Bump tracing-tree
Laurențiu Nicola 2023-11-15
parent f53368d · commit d83620a
-rw-r--r--Cargo.lock27
-rw-r--r--Cargo.toml1
-rw-r--r--crates/hir-ty/Cargo.toml2
-rw-r--r--crates/rust-analyzer/Cargo.toml2
4 files changed, 6 insertions, 26 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f991f4fc82..c5ae82b57e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -45,17 +45,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
[[package]]
-name = "atty"
-version = "0.2.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
-dependencies = [
- "hermit-abi 0.1.19",
- "libc",
- "winapi",
-]
-
-[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -470,15 +459,6 @@ dependencies = [
[[package]]
name = "hermit-abi"
-version = "0.1.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
@@ -1161,7 +1141,7 @@ version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
dependencies = [
- "hermit-abi 0.2.6",
+ "hermit-abi",
"libc",
]
@@ -2069,11 +2049,10 @@ dependencies = [
[[package]]
name = "tracing-tree"
-version = "0.2.3"
+version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4f9742d8df709837409dbb22aa25dd7769c260406f20ff48a2320b80a4a6aed0"
+checksum = "2ec6adcab41b1391b08a308cc6302b79f8095d1673f6947c2dc65ffb028b0b2d"
dependencies = [
- "atty",
"nu-ansi-term",
"tracing-core",
"tracing-log",
diff --git a/Cargo.toml b/Cargo.toml
index 984459c828..973385667a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -98,6 +98,7 @@ smallvec = { version = "1.10.0", features = [
"const_generics",
] }
tracing = "0.1.40"
+tracing-tree = "0.2.5"
smol_str = "0.2.0"
nohash-hasher = "0.2.0"
text-size = "1.1.0"
diff --git a/crates/hir-ty/Cargo.toml b/crates/hir-ty/Cargo.toml
index ea2bf2cdc5..de07e184e3 100644
--- a/crates/hir-ty/Cargo.toml
+++ b/crates/hir-ty/Cargo.toml
@@ -51,7 +51,7 @@ tracing.workspace = true
tracing-subscriber = { version = "0.3.16", default-features = false, features = [
"registry",
] }
-tracing-tree = "0.2.1"
+tracing-tree.workspace = true
project-model = { path = "../project-model" }
# local deps
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml
index 75019ea699..e9af760618 100644
--- a/crates/rust-analyzer/Cargo.toml
+++ b/crates/rust-analyzer/Cargo.toml
@@ -42,7 +42,7 @@ tracing-subscriber = { version = "0.3.16", default-features = false, features =
"tracing-log",
] }
tracing-log = "0.1.3"
-tracing-tree = "0.2.1"
+tracing-tree.workspace = true
triomphe.workspace = true
nohash-hasher.workspace = true
always-assert = "0.1.2"