mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 14:23:45 +00:00
e95d15a115
The latest versions of `memchr` experience LTO-related issues when compiling for windows-gnu [1], so needs to be pinned. The issue is present in the standard library. `memchr` has been pinned in `rustc_ast`, but since the workspace was recently split, this pin no longer has any effect on library crates. Resolve this by adding `memchr` as an _unused_ dependency in `std`, pinned to 2.5. Additionally, remove the pin in `rustc_ast` to allow non-library crates to upgrade to the latest version. Link: https://github.com/rust-lang/rust/issues/127890 [1]
21 lines
595 B
TOML
21 lines
595 B
TOML
[package]
|
|
name = "rustc_ast"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
bitflags = "2.4.1"
|
|
memchr = "2.7.4"
|
|
rustc_ast_ir = { path = "../rustc_ast_ir" }
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_index = { path = "../rustc_index" }
|
|
rustc_lexer = { path = "../rustc_lexer" }
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
rustc_span = { path = "../rustc_span" }
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
|
thin-vec = "0.2.12"
|
|
tracing = "0.1"
|
|
# tidy-alphabetical-end
|