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 = "icu_provider_macros" |
7 | description = "Proc macros for ICU data providers" |
8 | |
9 | authors.workspace = true |
10 | categories.workspace = true |
11 | edition.workspace = true |
12 | homepage.workspace = true |
13 | include.workspace = true |
14 | license.workspace = true |
15 | repository.workspace = true |
16 | rust-version.workspace = true |
17 | version.workspace = true |
18 | |
19 | [lib] |
20 | path = "src/lib.rs" |
21 | proc-macro = true |
22 | |
23 | [dependencies] |
24 | proc-macro2 = { workspace = true } |
25 | quote = { workspace = true } |
26 | syn = { workspace = true } |
27 | |
28 | [dev-dependencies] |
29 | icu_provider = { path = ".." } |
30 | |