2024-12-08 13:21:14 +01:00
|
|
|
[package]
|
|
|
|
|
name = "pay-respects-parser"
|
2024-12-18 00:14:14 +01:00
|
|
|
version = "0.3.4"
|
2024-12-08 13:21:14 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
# for crates.io
|
2024-12-09 16:46:09 +01:00
|
|
|
description = "Compile time rule parser for the pay-respects CLI tool"
|
2024-12-08 13:21:14 +01:00
|
|
|
repository = "https://github.com/iffse/pay-respects"
|
2024-12-10 19:02:10 +01:00
|
|
|
license = "AGPL-3.0-or-later"
|
2024-12-08 13:21:14 +01:00
|
|
|
include = [
|
|
|
|
|
"**/*.rs",
|
|
|
|
|
"**/*.toml",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-12-09 17:03:41 +01:00
|
|
|
syn = "2.0"
|
2024-12-08 13:21:14 +01:00
|
|
|
quote = "1.0"
|
|
|
|
|
proc-macro2 = "1.0"
|
|
|
|
|
toml = "0.8"
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|