20 lines
484 B
TOML
20 lines
484 B
TOML
[package]
|
|
name = "bok-macro"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Luca Fulchir <luca.fulchir@runesauth.com>"]
|
|
homepage = "https://git.runesauth.com/RunesAuth/bok"
|
|
repository = "https://git.runesauth.com/RunesAuth/bok"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
keywords = [ "bok" ]
|
|
categories = [ "config" ]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "2.0", features = [ "full" ] }
|
|
quote = { version = "1.0" }
|
|
bok = { path = "../bok" }
|
|
proc-macro2 = "1.0"
|