1
Fork 0

Upgrade tracing-subscriber

This commit is contained in:
pierwill 2021-12-22 10:14:06 -06:00
parent ea25b779eb
commit 155a4a87af
4 changed files with 10 additions and 36 deletions

View file

@ -539,7 +539,7 @@ dependencies = [
"petgraph", "petgraph",
"rustc-hash", "rustc-hash",
"tracing", "tracing",
"tracing-subscriber 0.3.3", "tracing-subscriber",
"tracing-tree", "tracing-tree",
] ]
@ -704,7 +704,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"tracing", "tracing",
"tracing-subscriber 0.2.16", "tracing-subscriber",
"unified-diff", "unified-diff",
"walkdir", "walkdir",
"winapi", "winapi",
@ -2105,15 +2105,6 @@ dependencies = [
"xml5ever", "xml5ever",
] ]
[[package]]
name = "matchers"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
dependencies = [
"regex-automata",
]
[[package]] [[package]]
name = "matchers" name = "matchers"
version = "0.1.0" version = "0.1.0"
@ -3854,7 +3845,7 @@ dependencies = [
"rustc_target", "rustc_target",
"rustc_typeck", "rustc_typeck",
"tracing", "tracing",
"tracing-subscriber 0.2.16", "tracing-subscriber",
"tracing-tree", "tracing-tree",
"winapi", "winapi",
] ]
@ -4633,7 +4624,7 @@ dependencies = [
"tempfile", "tempfile",
"tera", "tera",
"tracing", "tracing",
"tracing-subscriber 0.2.16", "tracing-subscriber",
"tracing-tree", "tracing-tree",
] ]
@ -5455,24 +5446,6 @@ dependencies = [
"tracing-core", "tracing-core",
] ]
[[package]]
name = "tracing-subscriber"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ab8966ac3ca27126141f7999361cc97dd6fb4b71da04c02044fa9045d98bb96"
dependencies = [
"ansi_term 0.12.1",
"lazy_static",
"matchers 0.0.1",
"parking_lot",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
]
[[package]] [[package]]
name = "tracing-subscriber" name = "tracing-subscriber"
version = "0.3.3" version = "0.3.3"
@ -5481,7 +5454,8 @@ checksum = "245da694cc7fc4729f3f418b304cb57789f1bed2a78c575407ab8a23f53cb4d3"
dependencies = [ dependencies = [
"ansi_term 0.12.1", "ansi_term 0.12.1",
"lazy_static", "lazy_static",
"matchers 0.1.0", "matchers",
"parking_lot",
"regex", "regex",
"sharded-slab", "sharded-slab",
"smallvec", "smallvec",
@ -5501,7 +5475,7 @@ dependencies = [
"atty", "atty",
"tracing-core", "tracing-core",
"tracing-log", "tracing-log",
"tracing-subscriber 0.3.3", "tracing-subscriber",
] ]
[[package]] [[package]]

View file

@ -10,7 +10,7 @@ crate-type = ["dylib"]
libc = "0.2" libc = "0.2"
atty = "0.2" atty = "0.2"
tracing = { version = "0.1.28" } tracing = { version = "0.1.28" }
tracing-subscriber = { version = "0.2.16", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] } tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
tracing-tree = "0.2.0" tracing-tree = "0.2.0"
rustc_middle = { path = "../rustc_middle" } rustc_middle = { path = "../rustc_middle" }
rustc_ast_pretty = { path = "../rustc_ast_pretty" } rustc_ast_pretty = { path = "../rustc_ast_pretty" }

View file

@ -23,7 +23,7 @@ tracing-tree = "0.2.0"
tera = { version = "1.10.0", default-features = false } tera = { version = "1.10.0", default-features = false }
[dependencies.tracing-subscriber] [dependencies.tracing-subscriber]
version = "0.2.13" version = "0.3.3"
default-features = false default-features = false
features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]

View file

@ -9,7 +9,7 @@ diff = "0.1.10"
unified-diff = "0.2.1" unified-diff = "0.2.1"
getopts = "0.2" getopts = "0.2"
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] } tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
regex = "1.0" regex = "1.0"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"