1# Copyright 2019 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-derive" 10version = "0.3.2" 11authors = ["Joshua Liebow-Feeser <joshlf@google.com>"] 12description = "Custom derive for traits from the zerocopy crate" 13license-file = "../LICENSE" 14repository = "https://github.com/google/zerocopy" 15 16exclude = [".*"] 17 18[lib] 19proc-macro = true 20 21[dependencies] 22proc-macro2 = "1.0.1" 23quote = "1.0.10" 24syn = { version = "1.0.5", features = ["visit"] } 25 26[dev-dependencies] 27rustversion = "1.0" 28trybuild = "1.0" 29zerocopy = { path = "../" } 30