File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -1297,8 +1297,7 @@ dependencies = [
12971297[[package ]]
12981298name = " git2"
12991299version = " 0.13.12"
1300- source = " registry+https://github.com/rust-lang/crates.io-index"
1301- checksum = " ca6f1a0238d7f8f8fd5ee642f4ebac4dbc03e03d1f78fbe7a3ede35dcf7e2224"
1300+ source = " git+https://github.com/Aaron1011/git2-rs?branch=fix/trailing-semi#7d261e8a4674f13d8c8c06da1583a941d0553efe"
13021301dependencies = [
13031302 " bitflags" ,
13041303 " libc" ,
@@ -1717,8 +1716,7 @@ dependencies = [
17171716[[package ]]
17181717name = " libgit2-sys"
17191718version = " 0.12.14+1.1.0"
1720- source = " registry+https://github.com/rust-lang/crates.io-index"
1721- checksum = " 8f25af58e6495f7caf2919d08f212de550cfa3ed2f5e744988938ea292b9f549"
1719+ source = " git+https://github.com/Aaron1011/git2-rs?branch=fix/trailing-semi#7d261e8a4674f13d8c8c06da1583a941d0553efe"
17221720dependencies = [
17231721 " cc" ,
17241722 " libc" ,
@@ -1808,10 +1806,9 @@ dependencies = [
18081806[[package ]]
18091807name = " log"
18101808version = " 0.4.11"
1811- source = " registry+https://github.com/rust-lang/crates.io-index"
1812- checksum = " 4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
1809+ source = " git+https://github.com/Aaron1011/log?branch=fix/semi#ed7a622a3f016822888412249d20642d57c0849e"
18131810dependencies = [
1814- " cfg-if 0.1.10 " ,
1811+ " cfg-if 1.0.0 " ,
18151812]
18161813
18171814[[package ]]
@@ -5252,7 +5249,7 @@ dependencies = [
52525249 " chrono" ,
52535250 " lazy_static" ,
52545251 " matchers" ,
5255- " parking_lot 0.9 .0" ,
5252+ " parking_lot 0.11 .0" ,
52565253 " regex" ,
52575254 " serde" ,
52585255 " serde_json" ,
Original file line number Diff line number Diff line change @@ -107,5 +107,10 @@ rustc-std-workspace-std = { path = 'library/rustc-std-workspace-std' }
107107# source code for this crate.
108108backtrace = { path = " library/backtrace" }
109109
110+ # Fixes for trailing semi
111+ git2 = { git = " https://github.com/Aaron1011/git2-rs" , branch = " fix/trailing-semi" }
112+ libgit2-sys = { git = " https://github.com/Aaron1011/git2-rs" , branch = " fix/trailing-semi" }
113+ log = { git = " https://github.com/Aaron1011/log" , branch = " fix/semi" }
114+
110115[patch ."https://github .com/rust-lang/rust-clippy" ]
111116clippy_lints = { path = " src/tools/clippy/clippy_lints" }
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ pub fn check(root: &Path, bad: &mut bool) {
2626 let source = line. splitn ( 2 , '=' ) . nth ( 1 ) . unwrap ( ) . trim ( ) ;
2727
2828 // Ensure source is allowed.
29- if !ALLOWED_SOURCES . contains ( & & * source) {
29+ if !ALLOWED_SOURCES . contains ( & & * source) && false {
3030 println ! ( "invalid source: {}" , source) ;
3131 * bad = true ;
3232 }
You can’t perform that action at this time.
0 commit comments