2019-09-20 01:09:31 +00:00
|
|
|
[package]
|
|
|
|
name = "bytemuck"
|
|
|
|
description = "A crate for mucking around with piles of bytes."
|
2021-06-13 14:17:13 +00:00
|
|
|
version = "1.6.3"
|
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]
|
2020-07-24 12:53:43 +00:00
|
|
|
# Note: Yeah these names are non-standard, we'll fix it in v2 some day maybe
|
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 = []
|
2020-08-21 01:04:36 +00:00
|
|
|
derive = ["bytemuck_derive"]
|
2021-06-05 14:25:57 +00:00
|
|
|
min_const_generics = []
|
2020-08-21 01:04:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-08-28 03:39:14 +00:00
|
|
|
# use the upper line for testing against bytemuck_derive changes, if any
|
|
|
|
#bytemuck_derive = { version = "1.0.1-alpha.0", path = "derive", optional = true }
|
|
|
|
bytemuck_derive = { version = "1", optional = true }
|
2019-09-20 01:09:31 +00:00
|
|
|
|
2020-07-25 21:43:31 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2020-09-05 18:33:29 +00:00
|
|
|
|
|
|
|
[package.metadata.playground]
|
|
|
|
all-features = true
|