defr 0.1.0

Golang `defer` statements but in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "defr"
description = "Golang `defer` statements but in Rust."
version = "0.1.0"
edition = "2021"
license = "MIT"
keywords = ["macro", "defer", "raii" ]
readme = "README.md"
authors = ["rueyxian <yrueyxian@gmail.com>"]

[lib]
proc-macro = true

[dependencies]
syn = { version = "1.0.103", features = ["extra-traits", "full" ] }
quote = "1.0.21"
proc-macro2 = "1.0.47"