persistent-structs 0.1.1

A Macro that generate helper functions to make non-mutable structs nicer to use
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "persistent-structs"
version = "0.1.1"
edition = "2021"
license = "MIT"
description = "A Macro that generate helper functions to make non-mutable structs nicer to use"
repository = "https://github.com/KnorrFG/persistent_structs"
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
proc-macro = true

[dependencies]
quote = "1.0.21"
syn = { version = "1.0.103", features = ["full"]}