rkyv 0.7.17

Zero-copy deserialization framework for Rust
Documentation
[package]
name = "rkyv"
version = "0.7.17"
authors = ["David Koloski <djkoloski@gmail.com>"]
edition = "2018"
description = "Zero-copy deserialization framework for Rust"
license = "MIT"
documentation = "https://docs.rs/rkyv"
repository = "https://github.com/rkyv/rkyv"
keywords = ["archive", "rkyv", "serialization", "zero-copy", "no_std"]
categories = ["encoding", "no-std"]
readme = "crates-io.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bytecheck = { version = "0.6", optional = true, default-features = false }
hashbrown = { version = "0.11", optional = true }
ptr_meta = { version = "~0.1.3", default-features = false }
rend = { version = "0.3.1", optional = true, default-features = false }
rkyv_derive = { version = "=0.7.17", path = "../rkyv_derive" }
seahash = "4.0"

# 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 rkyv 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 rkyv support in the crate instead.

indexmap = { version = "1.6.2", optional = true, default-features = false }
tinyvec = { version = "1.2", optional = true, default-features = false }
uuid = { version = "0.8", optional = true, default-features = false }

[features]
default = ["size_32", "std"]
alloc = ["hashbrown"]
arbitrary_enum_discriminant = ["rkyv_derive/arbitrary_enum_discriminant"]
archive_be = ["rend", "rkyv_derive/archive_be"]
archive_le = ["rend", "rkyv_derive/archive_le"]
copy = ["rkyv_derive/copy"]
copy_unsafe = []
size_16 = []
size_32 = []
size_64 = []
std = ["alloc", "bytecheck/std", "ptr_meta/std", "rend/std"]
strict = ["rkyv_derive/strict"]
validation = ["alloc", "bytecheck", "rend/validation"]

tinyvec_alloc = ["tinyvec/alloc"]
uuid_std = ["uuid/std"]

[package.metadata.docs.rs]
features = ["validation"]