2019-09-20 01:09:31 +00:00
|
|
|
[package]
|
|
|
|
name = "bytemuck"
|
|
|
|
description = "A crate for mucking around with piles of bytes."
|
2023-06-06 21:48:41 +00:00
|
|
|
version = "1.13.2"
|
2019-09-20 01:09:31 +00:00
|
|
|
authors = ["Lokathor <zefria@gmail.com>"]
|
|
|
|
repository = "https://github.com/Lokathor/bytemuck"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["transmute", "bytes", "casting"]
|
|
|
|
categories = ["encoding", "no-std"]
|
|
|
|
edition = "2018"
|
2020-07-24 02:23:46 +00:00
|
|
|
license = "Zlib OR Apache-2.0 OR MIT"
|
2020-07-25 21:43:31 +00:00
|
|
|
exclude = ["/pedantic.bat"]
|
2019-09-22 19:07:59 +00:00
|
|
|
|
2019-09-20 01:09:31 +00:00
|
|
|
[features]
|
2021-06-13 14:40:58 +00:00
|
|
|
# In v2 we'll fix these names to be more "normal".
|
|
|
|
derive = ["bytemuck_derive"]
|
2019-09-20 01:09:31 +00:00
|
|
|
extern_crate_alloc = []
|
2020-07-24 12:53:43 +00:00
|
|
|
extern_crate_std = ["extern_crate_alloc"]
|
2020-08-20 03:43:44 +00:00
|
|
|
zeroable_maybe_uninit = []
|
2022-12-21 20:54:31 +00:00
|
|
|
zeroable_atomics = []
|
2021-06-05 14:25:57 +00:00
|
|
|
min_const_generics = []
|
2021-10-15 19:46:52 +00:00
|
|
|
wasm_simd = [] # Until >= 1.54.0 is MSRV this is an off-by-default feature.
|
2021-12-22 02:01:47 +00:00
|
|
|
aarch64_simd = [] # Until >= 1.59.0 is MSRV this is an off-by-default feature.
|
2020-08-21 01:04:36 +00:00
|
|
|
|
2021-06-13 14:40:58 +00:00
|
|
|
# Do not use if you can avoid it, because this is unsound.
|
|
|
|
unsound_ptr_pod_impl = []
|
|
|
|
|
2021-12-16 06:16:38 +00:00
|
|
|
# NOT SEMVER SUPPORTED! TEMPORARY ONLY!
|
|
|
|
nightly_portable_simd = []
|
2022-12-17 23:13:52 +00:00
|
|
|
nightly_stdsimd = []
|
2021-12-16 06:16:38 +00:00
|
|
|
|
2020-08-21 01:04:36 +00:00
|
|
|
[dependencies]
|
2023-01-20 05:58:28 +00:00
|
|
|
bytemuck_derive = { version = "1.4", path = "derive", optional = true }
|
2019-09-20 01:09:31 +00:00
|
|
|
|
2020-07-25 21:43:31 +00:00
|
|
|
[package.metadata.docs.rs]
|
2022-07-19 01:25:57 +00:00
|
|
|
# Note(Lokathor): Don't use all-features or it would use `unsound_ptr_pod_impl` too.
|
2021-06-13 14:40:58 +00:00
|
|
|
features = [
|
|
|
|
"derive",
|
|
|
|
"extern_crate_alloc",
|
|
|
|
"extern_crate_std",
|
|
|
|
"zeroable_maybe_uninit",
|
2022-12-21 20:54:31 +00:00
|
|
|
"zeroable_atomics",
|
2021-06-13 14:40:58 +00:00
|
|
|
"min_const_generics",
|
2021-10-15 19:46:52 +00:00
|
|
|
"wasm_simd",
|
2021-06-13 14:40:58 +00:00
|
|
|
]
|
2020-09-05 18:33:29 +00:00
|
|
|
|
|
|
|
[package.metadata.playground]
|
2022-07-19 01:25:57 +00:00
|
|
|
# Note(Lokathor): Don't use all-features or it would use `unsound_ptr_pod_impl` too.
|
2021-06-13 14:40:58 +00:00
|
|
|
features = [
|
|
|
|
"derive",
|
|
|
|
"extern_crate_alloc",
|
|
|
|
"extern_crate_std",
|
|
|
|
"zeroable_maybe_uninit",
|
2022-12-21 20:54:31 +00:00
|
|
|
"zeroable_atomics",
|
2021-06-13 14:40:58 +00:00
|
|
|
"min_const_generics",
|
2021-10-15 19:46:52 +00:00
|
|
|
"wasm_simd",
|
2021-06-13 14:40:58 +00:00
|
|
|
]
|