Files
book_bot/book_bot_macros/Cargo.toml
Bulat Kurbanov 155dc9b1ee
Some checks are pending
Build docker image / Build-Docker-Image (push) Waiting to run
rust-clippy analyze / Run rust-clippy analyzing (push) Waiting to run
Add book_bot_macros proc-macro crate
Introduce log_handler attribute macro that injects tracing logs into
handler functions. It extracts user_id from Message (optionally) or
CallbackQuery and logs handler name; falls back to logging handler only.
2026-03-02 20:11:41 +01:00

13 lines
202 B
TOML

[package]
name = "book_bot_macros"
version = "0.1.0"
edition = "2021"
[lib]
proc-macro = true
[dependencies]
syn = { workspace = true }
quote = { workspace = true }
proc-macro2 = { workspace = true }