File tree 4 files changed +7
-4
lines changed
4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -2373,8 +2373,7 @@ dependencies = [
2373
2373
[[package ]]
2374
2374
name = " memchr"
2375
2375
version = " 2.6.0"
2376
- source = " registry+https://github.com/rust-lang/crates.io-index"
2377
- checksum = " 76fc44e2588d5b436dbc3c6cf62aef290f90dab6235744a93dfe1cc18f451e2c"
2376
+ source = " git+https://github.com/flip1995/memchr.git#f2e2936815bf211ece60a0251b53a617e1d678ac"
2378
2377
dependencies = [
2379
2378
" compiler_builtins" ,
2380
2379
" rustc-std-workspace-core" ,
Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ strip = true
118
118
rustc-std-workspace-core = { path = ' library/rustc-std-workspace-core' }
119
119
rustc-std-workspace-alloc = { path = ' library/rustc-std-workspace-alloc' }
120
120
rustc-std-workspace-std = { path = ' library/rustc-std-workspace-std' }
121
+ memchr = { git = " https://github.com/flip1995/memchr.git" }
121
122
122
123
[patch ."https://github .com/rust-lang/rust-clippy" ]
123
124
clippy_lints = { path = " src/tools/clippy/clippy_lints" }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ edition = "2021"
7
7
# FIXME: bumping memchr to 2.7.1 causes linker errors in MSVC thin-lto
8
8
# tidy-alphabetical-start
9
9
bitflags = " 2.4.1"
10
- memchr = " = 2.6.0"
10
+ memchr = " 2.6.0"
11
11
rustc_data_structures = { path = " ../rustc_data_structures" }
12
12
rustc_index = { path = " ../rustc_index" }
13
13
rustc_lexer = { path = " ../rustc_lexer" }
Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ use std::fs;
4
4
use std:: path:: Path ;
5
5
6
6
/// List of allowed sources for packages.
7
- const ALLOWED_SOURCES : & [ & str ] = & [ "\" registry+https://github.com/rust-lang/crates.io-index\" " ] ;
7
+ const ALLOWED_SOURCES : & [ & str ] = & [
8
+ "\" registry+https://github.com/rust-lang/crates.io-index\" " ,
9
+ "\" git+https://github.com/flip1995/memchr.git#f2e2936815bf211ece60a0251b53a617e1d678ac\" " ,
10
+ ] ;
8
11
9
12
/// Checks for external package sources. `root` is the path to the directory that contains the
10
13
/// workspace `Cargo.toml`.
You can’t perform that action at this time.
0 commit comments