getset 0.1.7

Getset, we're ready to go! A procedural macro for generating the most basic getters and setters on fields.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "getset"
version = "0.1.7"
authors = [
    "Ana Hobden <ana@hoverbear.org>",
    "John Baublitz <john.m.baublitz@gmail.com",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Getset, we're ready to go!

A procedural macro for generating the most basic getters and setters on fields.
"""
readme = "README.md"
keywords = [
    "macro",
    "getter",
    "setter",
    "getters",
    "setters",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT"
repository = "https://github.com/jbaublitz/getset"

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

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

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

[[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"

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

[dependencies.quote]
version = "1"

[dependencies.syn]
version = "2"