Skip to content

Releases: jordy25519/casey

Skip attribute macros

15 May 02:04
34e3cf7
Compare
Choose a tag to compare

fixes #10 - prevents attribute macros being transformed in the token stream

Ignore keywords during transformations

01 Oct 06:52
d9752b3
Compare
Choose a tag to compare

After this patch rust keywords will not have case transformations applied

// before patch
upper!(fn test(){}); // render `FN TEST() {}`

// after patch
upper!(fn test(){}); // render `fn TEST() {}`

0.3.1

29 Sep 23:00
fb82691
Compare
Choose a tag to compare

Fix pascal! marco to handle SHOUTY_CASE transforms

0.3.0

16 Jul 21:11
9d6a769
Compare
Choose a tag to compare

Target stable rust
#[proc_macro_hygiene] feature stabilzed in rust 1.45.0 and is no longer required to use this crate
Removed use of #[pattern] feature