You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was most recently updated in
linebender/vello#505
The main differences are:
1) Greater concurrency between clippy and testing
2) More explanations
3) MSRV checking
4) Use of `cargo hack`
5) WASM checked in CI
I've also added the current values of our MSRVs to the main three
crates.
# Adapted from https://github.com/bevyengine/bevy/blob/b446374392adc70aceb92621b080d1a6cf7a7392/.github/workflows/validation-jobs.yml#L74-L79
Copy file name to clipboardExpand all lines: masonry/README.md
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,26 @@ fn main() {
88
88
}
89
89
```
90
90
91
+
## Minimum supported Rust Version (MSRV)
92
+
93
+
This version of Masonry has been verified to compile with **Rust 1.77** and later.
94
+
95
+
Future versions of Masonry might increase the Rust version requirement.
96
+
It will not be treated as a breaking change and as such can even happen with small patch releases.
97
+
98
+
<details>
99
+
<summary>Click here if compiling fails.</summary>
100
+
101
+
As time has passed, some of Masonry's dependencies could have released versions with a higher Rust requirement.
102
+
If you encounter a compilation issue due to a dependency and don't want to upgrade your Rust toolchain, then you could downgrade the dependency.
103
+
104
+
```sh
105
+
# Use the problematic dependency's name and version
106
+
cargo update -p package_name --precise 0.1.1
107
+
```
108
+
109
+
</details>
110
+
91
111
## Community
92
112
93
113
Discussion of Masonry development happens in the [Linebender Zulip](https://xi.zulipchat.com/), specifically the [#masonry stream](https://xi.zulipchat.com/#narrow/stream/317477-masonry).
Copy file name to clipboardExpand all lines: xilem/README.md
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,26 @@ Xilem's reactive layer is built on top of a wide array of foundational Rust UI p
31
31
Xilem can currently be considered to be in an alpha state.
32
32
Lots of things need improvements.
33
33
34
+
## Minimum supported Rust Version (MSRV)
35
+
36
+
This version of Xilem has been verified to compile with **Rust 1.77** and later.
37
+
38
+
Future versions of Xilem might increase the Rust version requirement.
39
+
It will not be treated as a breaking change and as such can even happen with small patch releases.
40
+
41
+
<details>
42
+
<summary>Click here if compiling fails.</summary>
43
+
44
+
As time has passed, some of Xilem's dependencies could have released versions with a higher Rust requirement.
45
+
If you encounter a compilation issue due to a dependency and don't want to upgrade your Rust toolchain, then you could downgrade the dependency.
46
+
47
+
```sh
48
+
# Use the problematic dependency's name and version
49
+
cargo update -p package_name --precise 0.1.1
50
+
```
51
+
52
+
</details>
53
+
34
54
## Community
35
55
36
56
Discussion of Xilem development happens in the [Linebender Zulip](https://xi.zulipchat.com/), specifically the [#xilem stream](https://xi.zulipchat.com/#narrow/stream/354396-xilem).
0 commit comments