bytecheck 0.8.0-pre1

Derive macro for bytecheck
Documentation
[package]
name = "bytecheck"
description = "Derive macro for bytecheck"
documentation = "https://docs.rs/bytecheck"
keywords = ["bytecheck", "validation", "zero-copy", "rkyv"]
categories = ["encoding"]
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
bytecheck_derive = { workspace = true, path = "../bytecheck_derive", default-features = false }
ptr_meta.workspace = true
rancor.workspace = true
simdutf8 = { workspace = true, optional = true }

# Support for various common crates. These are primarily to get users off the ground and build some
# momentum.

# These are NOT PLANNED to remain in bytecheck for the final release. Much like serde, these
# implementations should be moved into their respective crates over time. Before adding support for
# another crate, please consider getting bytecheck support in the crate instead.

uuid = { workspace = true, optional = true }

[features]
default = ["simdutf8", "std"]
std = ["ptr_meta/std", "rancor/std", "simdutf8?/std"]