Skip to content

Commit

Permalink
docs(build-rs): Make MSRV stick out
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Dec 6, 2024
1 parent 60add85 commit f7c2847
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion crates/build-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,15 @@ macro_rules! unstable {

macro_rules! respected_msrv {
($ver:literal) => {
concat!("> MSRV: Respected as of ", $ver, ".")
concat!(
r#"<div class="warning">
MSRV: Respected as of "#,
$ver,
r#".
</div>"#
)
};
}

Expand Down

0 comments on commit f7c2847

Please sign in to comment.