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
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,10 @@ Support for x86_64 specific instructions (e.g. TLB flush), registers (e.g. contr
10
10
*`nightly`: Enables features only available on nightly Rust; enabled by default.
11
11
*`instructions`: Enabled by default, turns on x86\_64 specific instructions, and dependent features. Only available for x86\_64 targets.
12
12
13
-
## Building with stable rust
13
+
## Minimum Supported Rust Version (MSRV)
14
14
15
-
This needs to have the [compile-time requirements](https://github.com/alexcrichton/cc-rs#compile-time-requirements) of the `cc` crate installed on your system.
16
-
It was currently only tested on Linux and MacOS.
15
+
If no features are enabled (`--no-default-features`), Rust 1.57.0 is required.
16
+
17
+
If only the `instructions` feature is enabled (`--no-default-features --features instructions`), Rust 1.59.0 is required.
18
+
19
+
If the `nightly` feature or any of its sub-features is enabled, a recent nightly is required.
0 commit comments