We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd77e02 commit 918e0b5Copy full SHA for 918e0b5
app/components/version-list/row.hbs
@@ -71,6 +71,13 @@
71
<span local-class="msrv">
72
{{svg-jar "rust"}}
73
v{{@version.msrv}}
74
+
75
+ <EmberTooltip>
76
+ "Minimum Supported Rust Version"
77
+ {{#if @version.edition}}
78
+ <div local-class="edition">requires Rust Edition {{@version.edition}}</div>
79
+ {{/if}}
80
+ </EmberTooltip>
81
</span>
82
{{/if}}
83
app/components/version-list/row.module.css
@@ -212,6 +212,10 @@
212
}
213
214
215
+.edition {
216
+ margin-top: var(--space-2xs);
217
+}
218
219
.bytes {
220
font-variant-numeric: tabular-nums;
221
text-transform: none;
0 commit comments