File tree 3 files changed +11
-9
lines changed
3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -1297,8 +1297,7 @@ dependencies = [
1297
1297
[[package ]]
1298
1298
name = " git2"
1299
1299
version = " 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"
1302
1301
dependencies = [
1303
1302
" bitflags" ,
1304
1303
" libc" ,
@@ -1717,8 +1716,7 @@ dependencies = [
1717
1716
[[package ]]
1718
1717
name = " libgit2-sys"
1719
1718
version = " 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"
1722
1720
dependencies = [
1723
1721
" cc" ,
1724
1722
" libc" ,
@@ -1808,10 +1806,9 @@ dependencies = [
1808
1806
[[package ]]
1809
1807
name = " log"
1810
1808
version = " 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"
1813
1810
dependencies = [
1814
- " cfg-if 0.1.10 " ,
1811
+ " cfg-if 1.0.0 " ,
1815
1812
]
1816
1813
1817
1814
[[package ]]
@@ -5252,7 +5249,7 @@ dependencies = [
5252
5249
" chrono" ,
5253
5250
" lazy_static" ,
5254
5251
" matchers" ,
5255
- " parking_lot 0.9 .0" ,
5252
+ " parking_lot 0.11 .0" ,
5256
5253
" regex" ,
5257
5254
" serde" ,
5258
5255
" 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' }
107
107
# source code for this crate.
108
108
backtrace = { path = " library/backtrace" }
109
109
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
+
110
115
[patch ."https://github .com/rust-lang/rust-clippy" ]
111
116
clippy_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) {
26
26
let source = line. splitn ( 2 , '=' ) . nth ( 1 ) . unwrap ( ) . trim ( ) ;
27
27
28
28
// Ensure source is allowed.
29
- if !ALLOWED_SOURCES . contains ( & & * source) {
29
+ if !ALLOWED_SOURCES . contains ( & & * source) && false {
30
30
println ! ( "invalid source: {}" , source) ;
31
31
* bad = true ;
32
32
}
You can’t perform that action at this time.
0 commit comments