1[package]
2name = "darling_core"
3version = "0.20.11"
4authors = ["Ted Driggs <ted.driggs@outlook.com>"]
5repository = "https://github.com/TedDriggs/darling"
6description = """
7Helper crate for 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[features]
15diagnostics = []
16suggestions = ["strsim"]
17
18[dependencies]
19ident_case = "1.0.1"
20proc-macro2 = "1.0.86"
21quote = "1.0.18"
22syn = { version = "2.0.15", features = ["full", "extra-traits"] }
23fnv = "1.0.7"
24strsim = { version = "0.11.1", optional = true }
25