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 0f43a56 commit 21d92aaCopy full SHA for 21d92aa
Cargo.toml
@@ -13,10 +13,16 @@ exclude = ["/pedantic.bat"]
13
14
[features]
15
# In v2 we'll fix these names to be more "normal".
16
+
17
+# Enable deriving the various `bytemuck` traits.
18
derive = ["bytemuck_derive"]
19
+# Enable features requiring items from `extern crate alloc`.
20
extern_crate_alloc = []
21
+# Enable features requiring items from `extern crate std`.
22
extern_crate_std = ["extern_crate_alloc"]
23
+# Implement `Zeroable` for `MaybeUninit`.
24
zeroable_maybe_uninit = []
25
+# Implement `Zeroable` for `std::sync::atomic` types.
26
zeroable_atomics = []
27
28
# All MSRV notes below are GUIDELINES and future versions may require even more
0 commit comments