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 2d2b397 commit 478ff4bCopy full SHA for 478ff4b
Cargo.toml
@@ -48,6 +48,23 @@ nightly_float = []
48
# Improved documentation using the nightly toolchain
49
nightly_docs = []
50
51
+# Enables all features that are both sound and supported on the latest stable
52
+# version of Rust, with the exception of `extern_crate_alloc` and
53
+# `extern_crate_std`.
54
+# Note: Enabling this feature opts out of any MSRV guarantees!
55
+latest_stable_rust = [
56
+ # Keep this list sorted.
57
+ "aarch64_simd",
58
+ "align_offset",
59
+ "const_zeroed",
60
+ "derive",
61
+ "min_const_generics",
62
+ "must_cast",
63
+ "wasm_simd",
64
+ "zeroable_atomics",
65
+ "zeroable_maybe_uninit",
66
+]
67
+
68
[dependencies]
69
bytemuck_derive = { version = "1.4", path = "derive", optional = true }
70
0 commit comments