Unnamed repository; edit this file 'description' to name the repository.
Bump tracing
Laurențiu Nicola 2023-11-15
parent f66df10 · commit f53368d
-rw-r--r--Cargo.lock13
-rw-r--r--Cargo.toml1
-rw-r--r--crates/flycheck/Cargo.toml2
-rw-r--r--crates/hir-def/Cargo.toml2
-rw-r--r--crates/hir-expand/Cargo.toml2
-rw-r--r--crates/hir-ty/Cargo.toml4
-rw-r--r--crates/ide-db/Cargo.toml2
-rw-r--r--crates/ide/Cargo.toml2
-rw-r--r--crates/load-cargo/Cargo.toml2
-rw-r--r--crates/mbe/Cargo.toml2
-rw-r--r--crates/proc-macro-api/Cargo.toml2
-rw-r--r--crates/project-model/Cargo.toml2
-rw-r--r--crates/rust-analyzer/Cargo.toml2
-rw-r--r--crates/vfs-notify/Cargo.toml2
14 files changed, 20 insertions, 20 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 7ac2311c92..f991f4fc82 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2014,11 +2014,10 @@ dependencies = [
[[package]]
name = "tracing"
-version = "0.1.37"
+version = "0.1.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
+checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
dependencies = [
- "cfg-if",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
@@ -2026,9 +2025,9 @@ dependencies = [
[[package]]
name = "tracing-attributes"
-version = "0.1.26"
+version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
+checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
"quote",
@@ -2037,9 +2036,9 @@ dependencies = [
[[package]]
name = "tracing-core"
-version = "0.1.31"
+version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
+checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
dependencies = [
"once_cell",
"valuable",
diff --git a/Cargo.toml b/Cargo.toml
index 3dda3582be..984459c828 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -97,6 +97,7 @@ smallvec = { version = "1.10.0", features = [
"union",
"const_generics",
] }
+tracing = "0.1.40"
smol_str = "0.2.0"
nohash-hasher = "0.2.0"
text-size = "1.1.0"
diff --git a/crates/flycheck/Cargo.toml b/crates/flycheck/Cargo.toml
index e7f7adc784..12e0b14cc5 100644
--- a/crates/flycheck/Cargo.toml
+++ b/crates/flycheck/Cargo.toml
@@ -13,7 +13,7 @@ doctest = false
[dependencies]
crossbeam-channel = "0.5.8"
-tracing = "0.1.37"
+tracing.workspace = true
cargo_metadata = "0.15.4"
rustc-hash = "1.1.0"
serde_json.workspace = true
diff --git a/crates/hir-def/Cargo.toml b/crates/hir-def/Cargo.toml
index cd0fe62471..daed5d635d 100644
--- a/crates/hir-def/Cargo.toml
+++ b/crates/hir-def/Cargo.toml
@@ -25,7 +25,7 @@ itertools.workspace = true
la-arena.workspace = true
once_cell = "1.17.0"
rustc-hash = "1.1.0"
-tracing = "0.1.35"
+tracing.workspace = true
smallvec.workspace = true
hashbrown.workspace = true
triomphe.workspace = true
diff --git a/crates/hir-expand/Cargo.toml b/crates/hir-expand/Cargo.toml
index 97d99a69ab..12cb6503c6 100644
--- a/crates/hir-expand/Cargo.toml
+++ b/crates/hir-expand/Cargo.toml
@@ -13,7 +13,7 @@ doctest = false
[dependencies]
cov-mark = "2.0.0-pre.1"
-tracing = "0.1.35"
+tracing.workspace = true
either = "1.7.0"
rustc-hash = "1.1.0"
la-arena.workspace = true
diff --git a/crates/hir-ty/Cargo.toml b/crates/hir-ty/Cargo.toml
index 3699df98ec..ea2bf2cdc5 100644
--- a/crates/hir-ty/Cargo.toml
+++ b/crates/hir-ty/Cargo.toml
@@ -20,7 +20,7 @@ smallvec.workspace = true
ena = "0.14.0"
either = "1.7.0"
oorandom = "11.1.3"
-tracing = "0.1.35"
+tracing.workspace = true
rustc-hash = "1.1.0"
scoped-tls = "1.0.0"
chalk-solve = { version = "0.93.0", default-features = false }
@@ -47,7 +47,7 @@ limit.workspace = true
[dev-dependencies]
expect-test = "1.4.0"
-tracing = "0.1.35"
+tracing.workspace = true
tracing-subscriber = { version = "0.3.16", default-features = false, features = [
"registry",
] }
diff --git a/crates/ide-db/Cargo.toml b/crates/ide-db/Cargo.toml
index 409748fa73..f4057b33e6 100644
--- a/crates/ide-db/Cargo.toml
+++ b/crates/ide-db/Cargo.toml
@@ -13,7 +13,7 @@ doctest = false
[dependencies]
cov-mark = "2.0.0-pre.1"
-tracing = "0.1.35"
+tracing.workspace = true
rayon = "1.6.1"
fst = { version = "0.4.7", default-features = false }
rustc-hash = "1.1.0"
diff --git a/crates/ide/Cargo.toml b/crates/ide/Cargo.toml
index 90e7847bc8..f4d834d2cc 100644
--- a/crates/ide/Cargo.toml
+++ b/crates/ide/Cargo.toml
@@ -16,7 +16,7 @@ cov-mark = "2.0.0-pre.1"
crossbeam-channel = "0.5.5"
either = "1.7.0"
itertools.workspace = true
-tracing = "0.1.35"
+tracing.workspace = true
oorandom = "11.1.3"
pulldown-cmark-to-cmark = "10.0.4"
pulldown-cmark = { version = "0.9.1", default-features = false }
diff --git a/crates/load-cargo/Cargo.toml b/crates/load-cargo/Cargo.toml
index e31b0c2c81..31b9f6c76d 100644
--- a/crates/load-cargo/Cargo.toml
+++ b/crates/load-cargo/Cargo.toml
@@ -14,7 +14,7 @@ authors.workspace = true
anyhow.workspace = true
crossbeam-channel = "0.5.5"
itertools.workspace = true
-tracing = "0.1.35"
+tracing.workspace = true
ide.workspace = true
ide-db.workspace = true
diff --git a/crates/mbe/Cargo.toml b/crates/mbe/Cargo.toml
index 82105522eb..adab1003d1 100644
--- a/crates/mbe/Cargo.toml
+++ b/crates/mbe/Cargo.toml
@@ -15,7 +15,7 @@ doctest = false
cov-mark = "2.0.0-pre.1"
rustc-hash = "1.1.0"
smallvec.workspace = true
-tracing = "0.1.35"
+tracing.workspace = true
# local deps
syntax.workspace = true
diff --git a/crates/proc-macro-api/Cargo.toml b/crates/proc-macro-api/Cargo.toml
index 4229f28913..2c2d2e8a94 100644
--- a/crates/proc-macro-api/Cargo.toml
+++ b/crates/proc-macro-api/Cargo.toml
@@ -21,7 +21,7 @@ object = { version = "0.32.0", default-features = false, features = [
] }
serde.workspace = true
serde_json = { workspace = true, features = ["unbounded_depth"] }
-tracing = "0.1.37"
+tracing.workspace = true
triomphe.workspace = true
memmap2 = "0.5.4"
snap = "1.1.0"
diff --git a/crates/project-model/Cargo.toml b/crates/project-model/Cargo.toml
index 11dba4494f..d35e5f5992 100644
--- a/crates/project-model/Cargo.toml
+++ b/crates/project-model/Cargo.toml
@@ -12,7 +12,7 @@ rust-version.workspace = true
doctest = false
[dependencies]
-tracing = "0.1.35"
+tracing.workspace = true
rustc-hash = "1.1.0"
cargo_metadata = "0.15.0"
semver = "1.0.14"
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml
index 90f8577996..75019ea699 100644
--- a/crates/rust-analyzer/Cargo.toml
+++ b/crates/rust-analyzer/Cargo.toml
@@ -35,7 +35,7 @@ rayon = "1.6.1"
num_cpus = "1.15.0"
mimalloc = { version = "0.1.30", default-features = false, optional = true }
lsp-server.workspace = true
-tracing = "0.1.35"
+tracing.workspace = true
tracing-subscriber = { version = "0.3.16", default-features = false, features = [
"registry",
"fmt",
diff --git a/crates/vfs-notify/Cargo.toml b/crates/vfs-notify/Cargo.toml
index 11055f0280..0273df8e4a 100644
--- a/crates/vfs-notify/Cargo.toml
+++ b/crates/vfs-notify/Cargo.toml
@@ -12,7 +12,7 @@ rust-version.workspace = true
doctest = false
[dependencies]
-tracing = "0.1.35"
+tracing.workspace = true
walkdir = "2.3.2"
crossbeam-channel = "0.5.5"
# We demand 5.1.0 as any higher version pulls in a new windows-sys dupe