Skip to content

Commit e63b98f

Browse files
committed
Use GitHub Markdown alerts in README
1 parent 2f7d968 commit e63b98f

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

README.md

+14-6
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ Note that in some cases the `"s"` level may result in a smaller binary than `"z"
6969
the
7070
[`opt-level` documentation](https://doc.rust-lang.org/cargo/reference/profiles.html#opt-level):
7171

72+
> [!TIP]
7273
> It is recommended to experiment with different levels to find the right balance for your project.
7374
> There may be surprising results, such as ... the `"s"` and `"z"` levels not being necessarily
7475
> smaller.
@@ -129,7 +130,8 @@ codegen-units = 1
129130

130131
![Minimum Rust: 1.10](https://img.shields.io/badge/Minimum%20Rust%20Version-1.10-brightgreen.svg)
131132

132-
> **Note**: Up to this point, the features discussed to reduce binary size did not have an
133+
> [!IMPORTANT]
134+
> Up to this point, the features discussed to reduce binary size did not have an
133135
> impact on the behaviour of the program (only its execution speed). This feature does
134136
> have an impact on behavior.
135137
@@ -165,9 +167,11 @@ $ RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build --release
165167

166168
![Minimum Rust: Nightly](https://img.shields.io/badge/Minimum%20Rust%20Version-nightly-orange.svg)
167169

168-
> **Note**: See also [Xargo](https://github.com/japaric/xargo), the predecessor to `build-std`.
170+
> [!NOTE]
171+
> See also [Xargo](https://github.com/japaric/xargo), the predecessor to `build-std`.
169172
[Xargo is currently in maintenance status](https://github.com/japaric/xargo/issues/193).
170173

174+
> [!NOTE]
171175
> Example project is located in the [`build_std`](build_std) folder.
172176
173177
Rust ships pre-built copies of the standard library (`libstd`) with its toolchains. This means
@@ -239,6 +243,7 @@ On macOS, the final stripped binary size is reduced to 30KB.
239243

240244
![Minimum Rust: Nightly](https://img.shields.io/badge/Minimum%20Rust%20Version-nightly-orange.svg)
241245

246+
> [!NOTE]
242247
> Example projects are located in the [`no_main`](no_main) folder.
243248
244249
Up until this point, we haven't restricted what utilities we used from `libstd`. In this section
@@ -271,6 +276,7 @@ On macOS, the final stripped binary is reduced to 8KB.
271276

272277
![Minimum Rust: 1.30](https://img.shields.io/badge/Minimum%20Rust%20Version-1.30-brightgreen.svg)
273278

279+
> [!NOTE]
274280
> Example projects are located in the [`no_std`](no_std) folder.
275281
276282
Up until this point, our application was using the Rust standard library, `libstd`. `libstd`
@@ -307,8 +313,9 @@ fn my_panic(_info: &core::panic::PanicInfo) -> ! {
307313

308314
# Compress the binary
309315

310-
Up until this point, all size-reducing techniques were Rust-specific. This section describes
311-
a language-agnostic binary packing tool that is an option to reduce binary size further.
316+
> [!NOTE]
317+
> Up until this point, all size-reducing techniques were Rust-specific. This section describes
318+
> a language-agnostic binary packing tool that is an option to reduce binary size further.
312319
313320
[UPX](https://github.com/upx/upx) is a powerful tool for creating a self-contained, compressed
314321
binary with no addition runtime requirements. It claims to typically reduce binary size by 50-70%,
@@ -318,8 +325,9 @@ but the actual result depends on your executable.
318325
$ upx --best --lzma target/release/min-sized-rust
319326
```
320327

321-
It should be noted that there have been times that UPX-packed binaries have flagged
322-
heuristic-based anti-virus software because malware often uses UPX.
328+
> [!WARNING]
329+
> There have been times that UPX-packed binaries have flagged heuristic-based antivirus software
330+
> because malware often uses UPX.
323331
324332
# Tools
325333

0 commit comments

Comments
 (0)