File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1014,8 +1014,7 @@ dependencies = [
1014
1014
[[package ]]
1015
1015
name = " derivative"
1016
1016
version = " 2.2.0"
1017
- source = " registry+https://github.com/rust-lang/crates.io-index"
1018
- checksum = " fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
1017
+ source = " git+https://github.com/compiler-errors/rust-derivative.git?branch=eq#2be4507055fee1bb6e13b1d00dd6807afca53ecd"
1019
1018
dependencies = [
1020
1019
" proc-macro2" ,
1021
1020
" quote" ,
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ edition = "2021"
6
6
[dependencies ]
7
7
# tidy-alphabetical-start
8
8
bitflags = " 1.2.1"
9
+ derivative = { git = " https://github.com/compiler-errors/rust-derivative.git" , branch = " eq" }
9
10
rustc_data_structures = { path = " ../rustc_data_structures" }
10
11
rustc_index = { path = " ../rustc_index" }
11
12
rustc_macros = { path = " ../rustc_macros" }
12
13
rustc_serialize = { path = " ../rustc_serialize" }
13
14
smallvec = { version = " 1.8.1" , features = [" union" , " may_dangle" ] }
14
- derivative = " 2.2.0"
15
15
# tidy-alphabetical-end
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/compiler-errors/rust-derivative.git?branch=eq#2be4507055fee1bb6e13b1d00dd6807afca53ecd\" " ,
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