21 lines
526 B
TOML
21 lines
526 B
TOML
[package]
|
|
name = "darling_macro"
|
|
version = "0.20.11"
|
|
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
|
|
repository = "https://github.com/TedDriggs/darling"
|
|
description = """
|
|
Internal support for a proc-macro library for reading attributes into structs when
|
|
implementing custom derives. Use https://crates.io/crates/darling in your code.
|
|
"""
|
|
license = "MIT"
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
|
|
[dependencies]
|
|
quote = "1.0.18"
|
|
syn = "2.0.15"
|
|
darling_core = { version = "=0.20.11", path = "../core" }
|
|
|
|
[lib]
|
|
proc-macro = true
|