blob: 4cb0f08f70ffc46bfaa536bd716bd64ee61b6446 [file] [log] [blame]
# Copyright 2019 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.
[package]
edition = "2021"
name = "zerocopy-derive"
version = "0.7.5"
authors = ["Joshua Liebow-Feeser <joshlf@google.com>"]
description = "Custom derive for traits from the zerocopy crate"
license = "BSD-2-Clause"
repository = "https://github.com/google/zerocopy"
rust-version = "1.61.0"
exclude = [".*"]
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.1"
quote = "1.0.10"
syn = "2.0.31"
[dev-dependencies]
rustversion = "1.0"
static_assertions = "1.1"
# Pinned to a specific version so that the version used for local development
# and the version used in CI are guaranteed to be the same. Future versions
# sometimes change the output format slightly, so a version mismatch can cause
# CI test failures.
trybuild = "=1.0.80"
zerocopy = { path = "../", features = ["default", "derive"] }