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