35 lines
792 B
TOML
35 lines
792 B
TOML
|
|
# Copyright 2018 The Fuchsia Authors. All rights reserved.
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
# This file is used when publishing to crates.io
|
||
|
|
|
||
|
|
[package]
|
||
|
|
edition = "2018"
|
||
|
|
name = "zerocopy"
|
||
|
|
version = "0.6.1"
|
||
|
|
authors = ["Joshua Liebow-Feeser <joshlf@google.com>"]
|
||
|
|
description = "Utilities for zero-copy parsing and serialization"
|
||
|
|
license-file = "../../../LICENSE"
|
||
|
|
repository = "https://fuchsia.googlesource.com/fuchsia/+/HEAD/src/lib/zerocopy"
|
||
|
|
|
||
|
|
include = ["src/*", "Cargo.toml"]
|
||
|
|
|
||
|
|
[package.metadata.docs.rs]
|
||
|
|
all-features = true
|
||
|
|
|
||
|
|
[features]
|
||
|
|
alloc = []
|
||
|
|
simd = []
|
||
|
|
simd-nightly = ["simd"]
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
zerocopy-derive = "0.3.1"
|
||
|
|
|
||
|
|
[dependencies.byteorder]
|
||
|
|
version = "1.3"
|
||
|
|
default-features = false
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
rand = "0.6"
|