[package] name = "rkyv-test" version = "0.7.38-test.2" authors = ["David Koloski "] 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.8", optional = true, default-features = false } hashbrown = { version = "0.12", optional = true } ptr_meta = { version = "~0.1.3", default-features = false } rend = { version = "~0.3.6", optional = true, default-features = false } rkyv_derive_test = { version = "=0.7.38-test.2", 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.7", optional = true, default-features = false } smallvec = { version = "1.7", optional = true, default-features = false } tinyvec = { version = "1.5", optional = true, default-features = false } uuid = { version = "1.0", optional = true, default-features = false } [features] default = ["size_32", "std"] alloc = ["hashbrown"] arbitrary_enum_discriminant = ["rkyv_derive_test/arbitrary_enum_discriminant"] archive_be = ["rend", "rkyv_derive_test/archive_be"] archive_le = ["rend", "rkyv_derive_test/archive_le"] copy = ["rkyv_derive_test/copy"] copy_unsafe = [] size_16 = [] size_32 = [] size_64 = [] std = ["alloc", "bytecheck/std", "ptr_meta/std", "rend/std"] strict = ["rkyv_derive_test/strict"] validation = ["alloc", "bytecheck", "rend/validation"] tinyvec_alloc = ["tinyvec/alloc"] uuid_std = ["uuid/std"] [package.metadata.docs.rs] features = ["validation"]