mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-16 17:03:35 +00:00
Auto merge of #113046 - Nilstrieb:update, r=Mark-Simulacrum
cargo update #112865 with the tidy exemptions and tracing and syn 2 not upgraded Additional deps: equivalent: indexmap errno: through rustix errno-dragonfly: errno nu-ansi-term: tracing overload: nu-ansi-term r? Mark-Simulacrum
This commit is contained in:
commit
839e9a6e12
1025
Cargo.lock
1025
Cargo.lock
File diff suppressed because it is too large
Load Diff
@ -8,3 +8,6 @@ crate-type = ["dylib"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustc_driver_impl = { path = "../rustc_driver_impl" }
|
rustc_driver_impl = { path = "../rustc_driver_impl" }
|
||||||
|
# FIXME(Nilstrieb): 0.37.12 adds eventfd support for FreeBSD,
|
||||||
|
# but FreeBSD 12 does not support it: https://github.com/bytecodealliance/rustix/issues/716
|
||||||
|
rustix = "=0.37.11"
|
||||||
|
@ -7,7 +7,7 @@ edition = "2021"
|
|||||||
tracing = "0.1.28"
|
tracing = "0.1.28"
|
||||||
tracing-subscriber = { version = "0.3.3", 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"
|
||||||
tracing-core = "0.1.28"
|
tracing-core = "=0.1.30" # FIXME(Nilstrieb) tracing has a deadlock: https://github.com/tokio-rs/tracing/issues/2635
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rustc_span = { path = "../rustc_span" }
|
rustc_span = { path = "../rustc_span" }
|
||||||
|
@ -8,6 +8,7 @@ proc-macro = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
synstructure = "0.13.0"
|
synstructure = "0.13.0"
|
||||||
syn = { version = "2", features = ["full"] }
|
# FIXME(Nilstrieb): Updating this causes changes in the diagnostics output.
|
||||||
|
syn = { version = "=2.0.8", features = ["full"] }
|
||||||
proc-macro2 = "1"
|
proc-macro2 = "1"
|
||||||
quote = "1"
|
quote = "1"
|
||||||
|
@ -18,7 +18,8 @@ panic_unwind = { path = "../panic_unwind", optional = true }
|
|||||||
panic_abort = { path = "../panic_abort" }
|
panic_abort = { path = "../panic_abort" }
|
||||||
core = { path = "../core", public = true }
|
core = { path = "../core", public = true }
|
||||||
libc = { version = "0.2.146", default-features = false, features = ['rustc-dep-of-std'], public = true }
|
libc = { version = "0.2.146", default-features = false, features = ['rustc-dep-of-std'], public = true }
|
||||||
compiler_builtins = { version = "0.1.93" }
|
# FIXME(Nilstrieb): https://github.com/rust-lang/compiler-builtins/pull/532/files#r1249354225
|
||||||
|
compiler_builtins = { version = "=0.1.93" }
|
||||||
profiler_builtins = { path = "../profiler_builtins", optional = true }
|
profiler_builtins = { path = "../profiler_builtins", optional = true }
|
||||||
unwind = { path = "../unwind" }
|
unwind = { path = "../unwind" }
|
||||||
hashbrown = { version = "0.14", default-features = false, features = ['rustc-dep-of-std'] }
|
hashbrown = { version = "0.14", default-features = false, features = ['rustc-dep-of-std'] }
|
||||||
|
@ -111,7 +111,6 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
|
|||||||
"aho-corasick",
|
"aho-corasick",
|
||||||
"allocator-api2", // FIXME: only appears in Cargo.lock due to https://github.com/rust-lang/cargo/issues/10801
|
"allocator-api2", // FIXME: only appears in Cargo.lock due to https://github.com/rust-lang/cargo/issues/10801
|
||||||
"annotate-snippets",
|
"annotate-snippets",
|
||||||
"ansi_term",
|
|
||||||
"ar_archive_writer",
|
"ar_archive_writer",
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
"atty",
|
"atty",
|
||||||
@ -143,6 +142,7 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
|
|||||||
"either",
|
"either",
|
||||||
"elsa",
|
"elsa",
|
||||||
"ena",
|
"ena",
|
||||||
|
"equivalent",
|
||||||
"expect-test",
|
"expect-test",
|
||||||
"fallible-iterator", // dependency of `thorin`
|
"fallible-iterator", // dependency of `thorin`
|
||||||
"fastrand",
|
"fastrand",
|
||||||
@ -187,10 +187,12 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
|
|||||||
"memmap2",
|
"memmap2",
|
||||||
"memoffset",
|
"memoffset",
|
||||||
"miniz_oxide",
|
"miniz_oxide",
|
||||||
|
"nu-ansi-term",
|
||||||
"num_cpus",
|
"num_cpus",
|
||||||
"object",
|
"object",
|
||||||
"odht",
|
"odht",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
|
"overload",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
"parking_lot_core",
|
"parking_lot_core",
|
||||||
"pathdiff",
|
"pathdiff",
|
||||||
|
Loading…
Reference in New Issue
Block a user