1# Copyright 2018 The Fuchsia Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# This file is used when publishing to crates.io 6 7[package] 8edition = "2018" 9name = "zerocopy" 10version = "0.6.1" 11authors = ["Joshua Liebow-Feeser <joshlf@google.com>"] 12description = "Utilities for zero-copy parsing and serialization" 13license-file = "../../../LICENSE" 14repository = "https://fuchsia.googlesource.com/fuchsia/+/HEAD/src/lib/zerocopy" 15 16include = ["src/*", "Cargo.toml"] 17 18[package.metadata.docs.rs] 19all-features = true 20 21[features] 22alloc = [] 23simd = [] 24simd-nightly = ["simd"] 25 26[dependencies] 27zerocopy-derive = "0.3.1" 28 29[dependencies.byteorder] 30version = "1.3" 31default-features = false 32 33[dev-dependencies] 34rand = "0.6" 35