File tree 15 files changed +43
-4
lines changed
15 files changed +43
-4
lines changed Original file line number Diff line number Diff line change 8
8
ignorePaths : [
9
9
"**/tests/**" ,
10
10
] ,
11
+ regexManagers : [
12
+ {
13
+ customType : 'regex' ,
14
+ fileMatch : [
15
+ '^Cargo.toml$' ,
16
+ ] ,
17
+ matchStrings : [
18
+ 'rust-version.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)' ,
19
+ ] ,
20
+ depNameTemplate : 'latest-msrv' ,
21
+ packageNameTemplate : 'rust-lang/rust' ,
22
+ datasourceTemplate : 'github-releases' ,
23
+ } ,
24
+ ] ,
11
25
packageRules : [
26
+ {
27
+ commitMessageTopic : 'Latest MSRV' ,
28
+ matchManagers : [
29
+ 'regex' ,
30
+ ] ,
31
+ matchPackageNames : [
32
+ 'latest-msrv' ,
33
+ ] ,
34
+ schedule : [
35
+ '* * * * *' ,
36
+ ] ,
37
+ } ,
12
38
// Goals:
13
39
// - Rollup safe upgrades to reduce CI runner load
14
40
// - Have lockfile and manifest in-sync (implicit rules)
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ exclude = [
11
11
]
12
12
13
13
[workspace .package ]
14
+ rust-version = " 1.71.0"
14
15
edition = " 2021"
15
16
license = " MIT OR Apache-2.0"
16
17
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " benchsuite"
3
3
version = " 0.0.0"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
license.workspace = true
6
7
homepage = " https://github.com/rust-lang/cargo"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " capture"
3
3
version = " 0.1.0"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
license.workspace = true
6
7
description = " Tool for capturing a real-world workspace for benchmarking."
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cargo-test-macro"
3
3
version = " 0.1.0"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
license.workspace = true
6
7
homepage = " https://github.com/rust-lang/cargo"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cargo-test-support"
3
3
version = " 0.1.0"
4
+ rust-version.workspace = true
4
5
license.workspace = true
5
6
edition.workspace = true
6
7
publish = false
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cargo-util"
3
- version = " 0.2.6"
3
+ version = " 0.2.7"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
license.workspace = true
6
7
homepage = " https://github.com/rust-lang/cargo"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " crates-io"
3
- version = " 0.38.0"
3
+ version = " 0.38.1"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
license.workspace = true
6
7
repository = " https://github.com/rust-lang/cargo"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " mdman"
3
3
version = " 0.0.0"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
license.workspace = true
6
7
description = " Creates a man page page from markdown."
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " resolver-tests"
3
3
version = " 0.0.0"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
publish = false
6
7
Original file line number Diff line number Diff line change 2
2
name = " semver-check"
3
3
version = " 0.0.0"
4
4
authors = [" Eric Huss" ]
5
+ rust-version.workspace = true
5
6
edition.workspace = true
6
7
publish = false
7
8
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " xtask-build-man"
3
3
version = " 0.0.0"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
publish = false
6
7
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " xtask-bump-check"
3
3
version = " 0.0.0"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
publish = false
6
7
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " xtask-stale-label"
3
3
version = " 0.0.0"
4
+ rust-version.workspace = true
4
5
edition.workspace = true
5
6
publish = false
6
7
You can’t perform that action at this time.
0 commit comments