1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# This file is part of ICU4X. For terms of use, please see the file
# called LICENSE at the top level of the ICU4X source tree
# (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
[package]
name = "zerofrom-derive"
description = "Custom derive for the zerofrom crate"
version = "0.1.5"
authors = ["Manish Goregaokar <manishsmail@gmail.com>"]
categories = ["data-structures", "memory-management", "caching", "no-std"]
keywords = ["zerocopy", "serialization", "lifetime", "borrow"]
edition.workspace = true
license.workspace = true
repository.workspace = true
[package.metadata.workspaces]
independent = true
[lib]
proc-macro = true
path = "src/lib.rs"
[dependencies]
proc-macro2 = { workspace = true }
quote = { workspace = true }
syn = { workspace = true, features = ["fold"] }
synstructure = { workspace = true }
[dev-dependencies]
zerofrom = { path = "..", features = ["derive"]}
zerovec = { path = "../../../utils/zerovec", features = ["yoke"] }
|