feat: add to_snake_case_string proc macro implementation

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-27 12:07:16 -03:00
parent 2f0e7e1c5e
commit 6579d47821
2 changed files with 97 additions and 0 deletions

12
macros/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "to_snake_case_string"
version = "0.1.0"
edition = "2024"
[lib]
proc-macro = true
[dependencies]
syn = { version = "2.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"