1[package]
2name = "darling_macro"
3version = "0.20.11"
4authors = ["Ted Driggs <ted.driggs@outlook.com>"]
5repository = "https://github.com/TedDriggs/darling"
6description = """
7Internal support for a proc-macro library for reading attributes into structs when
8implementing custom derives. Use https://crates.io/crates/darling in your code.
9"""
10license = "MIT"
11edition = "2021"
12rust-version = "1.56"
13
14[dependencies]
15quote = "1.0.18"
16syn = "2.0.15"
17darling_core = { version = "=0.20.11", path = "../core" }
18
19[lib]
20proc-macro = true
21