mirror of
https://codeberg.org/iff/pay-respects.git
synced 2025-10-06 00:22:43 +02:00
24 lines
426 B
TOML
24 lines
426 B
TOML
[package]
|
|
name = "pay-respects-parser"
|
|
version = "0.3.9"
|
|
edition = "2021"
|
|
|
|
# for crates.io
|
|
description = "Compile time rule parser for the pay-respects CLI tool"
|
|
repository = "https://github.com/iffse/pay-respects"
|
|
license = "MPL-2.0"
|
|
include = [
|
|
"**/*.rs",
|
|
"**/*.toml",
|
|
]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = "2.0"
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
toml = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|