getset 0.1.4

Getset, we're ready to go! A procedural macro for generating the most basic getters and setters on fields.
Documentation
[dependencies.proc-macro-error2]
version = "2"

[dependencies.proc-macro2]
default-features = false
version = "1"

[dependencies.quote]
version = "1"

[dependencies.syn]
version = "2"

[[example]]
name = "simple"
path = "examples/simple.rs"

[lib]
name = "getset"
path = "src/lib.rs"
proc-macro = true

[package]
authors = ["Ana Hobden <ana@hoverbear.org>", "John Baublitz <john.m.baublitz@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::procedural-macro-helpers"]
description = """
Getset, we're ready to go!

A procedural macro for generating the most basic getters and setters on fields.
"""
edition = "2018"
keywords = ["macro", "getter", "setter", "getters", "setters"]
license = "MIT"
name = "getset"
readme = "README.md"
repository = "https://github.com/jbaublitz/getset"
version = "0.1.4"

[[test]]
name = "copy_getters"
path = "tests/copy_getters.rs"

[[test]]
name = "getset"
path = "tests/getset.rs"

[[test]]
name = "getters"
path = "tests/getters.rs"

[[test]]
name = "mut_getters"
path = "tests/mut_getters.rs"

[[test]]
name = "raw_identifiers"
path = "tests/raw_identifiers.rs"

[[test]]
name = "setters"
path = "tests/setters.rs"

[[test]]
name = "skip"
path = "tests/skip.rs"

[[test]]
name = "unary_tuple"
path = "tests/unary_tuple.rs"

[[test]]
name = "with_setters"
path = "tests/with_setters.rs"