mirror of
https://github.com/OMGeeky/confique.git
synced 2025-12-31 00:30:18 +01:00
This was mostly what I implemented as utility library for another project. But I figured I can also extract it as it's useful on its own.
15 lines
231 B
TOML
15 lines
231 B
TOML
[package]
|
|
name = "confique-macro"
|
|
version = "0.0.1"
|
|
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = "1.0"
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
heck = "0.3.2"
|