Files
confique/macro/Cargo.toml
Lukas Kalbertodt a54042f8ca Revert "Replace some manual parsing code with darling helper crate"
This reverts commit e5af4f8efe.

The `darling` crate limits us to `syn::Meta` which is probably not
enough in the long run. There are a couple of other problems I have
with this crate and I think it's currently not worth. I'm considering
writing my own alternative...
2021-11-03 14:58:23 +01:00

19 lines
407 B
TOML

[package]
name = "confique-macro"
version = "0.0.1"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"
description = "Macro crate for 'confique'. Do not use directly! Semver not guaranteed!"
repository = "https://github.com/LukasKalbertodt/confique/"
license = "MIT/Apache-2.0"
[lib]
proc-macro = true
[dependencies]
syn = "1.0"
quote = "1.0"
proc-macro2 = "1.0"
heck = "0.3.2"