File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
compiler/rustc_data_structures Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -2847,9 +2847,8 @@ dependencies = [
2847
2847
2848
2848
[[package ]]
2849
2849
name = " psm"
2850
- version = " 0.1.16"
2851
- source = " registry+https://github.com/rust-lang/crates.io-index"
2852
- checksum = " cd136ff4382c4753fc061cb9e4712ab2af263376b95bbd5bd8cd50c020b78e69"
2850
+ version = " 0.1.17"
2851
+ source = " git+https://github.com/hkratz/stacker.git?rev=f2b4078e0c32adffeed3c62ae7e152dbd18fd32b#f2b4078e0c32adffeed3c62ae7e152dbd18fd32b"
2853
2852
dependencies = [
2854
2853
" cc" ,
2855
2854
]
@@ -4760,8 +4759,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
4760
4759
[[package ]]
4761
4760
name = " stacker"
4762
4761
version = " 0.1.14"
4763
- source = " registry+https://github.com/rust-lang/crates.io-index"
4764
- checksum = " 90939d5171a4420b3ff5fbc8954d641e7377335454c259dcb80786f3f21dc9b4"
4762
+ source = " git+https://github.com/hkratz/stacker.git?rev=f2b4078e0c32adffeed3c62ae7e152dbd18fd32b#f2b4078e0c32adffeed3c62ae7e152dbd18fd32b"
4765
4763
dependencies = [
4766
4764
" cc" ,
4767
4765
" cfg-if 1.0.0" ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ rustc_index = { path = "../rustc_index", package = "rustc_index" }
25
25
bitflags = " 1.2.1"
26
26
measureme = " 10.0.0"
27
27
libc = " 0.2"
28
- stacker = " 0.1.14 "
28
+ stacker = { git = " https://github.com/hkratz/stacker.git " , rev = " f2b4078e0c32adffeed3c62ae7e152dbd18fd32b " , features = [ " fast_path_optimization " ] }
29
29
tempfile = " 3.2"
30
30
31
31
[dependencies .parking_lot ]
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/hkratz/stacker.git?rev=f2b4078e0c32adffeed3c62ae7e152dbd18fd32b#f2b4078e0c32adffeed3c62ae7e152dbd18fd32b\" " ,
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