Skip to content

Commit 0f4e698

Browse files
committed
docs(build-rs): Make MSRV stick out
1 parent 19bb28e commit 0f4e698

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

crates/build-rs/src/lib.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,15 @@ macro_rules! unstable {
2828

2929
macro_rules! respected_msrv {
3030
($ver:literal) => {
31-
concat!("> MSRV: Respected as of ", $ver, ".")
31+
concat!(
32+
r#"<div class="warning">
33+
34+
MSRV: Respected as of "#,
35+
$ver,
36+
r#".
37+
38+
</div>"#
39+
)
3240
};
3341
}
3442

0 commit comments

Comments
 (0)