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 = "yoke-derive" |
7 | description = "Custom derive for the yoke crate" |
8 | version = "0.7.5" |
9 | categories = ["data-structures" , "memory-management" , "caching" , "no-std" ] |
10 | keywords = ["zerocopy" , "serialization" , "lifetime" , "borrow" , "self-referential" ] |
11 | authors = ["Manish Goregaokar <manishsmail@gmail.com>" ] |
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 | yoke = { path = ".." , features = ["derive" ] } |
32 | zerovec = { path = "../../../utils/zerovec" , features = ["yoke" ] } |
33 | |