37 lines
1023 B
TOML
37 lines
1023 B
TOML
# 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.7"
|
|
authors = ["Manish Goregaokar <manishsmail@gmail.com>"]
|
|
categories = ["data-structures", "memory-management", "caching", "no-std"]
|
|
keywords = ["macros", "derive", "zero-copy", "serialization"]
|
|
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version = "1.71.1"
|
|
|
|
[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"] }
|
|
|
|
[lints]
|
|
workspace = true
|