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