[package]
edition = "2021"
rust-version = "1.68.0"
name = "derive_setters"
version = "0.1.9"
authors = ["Alissa Rao <aura@aura.moe>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust macro to automatically generates setter methods for a struct's fields."
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/Lymia/derive_setters"
[features]
__NOT_PUBLIC__nightly_testing = ["trybuild"]
nightly = ["proc-macro2/nightly"]
[lib]
name = "derive_setters"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "basics"
path = "tests/basics.rs"
[[test]]
name = "ref"
path = "tests/ref.rs"
[[test]]
name = "trybuild"
path = "tests/trybuild.rs"
[dependencies.darling]
version = "0.21"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
[dependencies.trybuild]
version = "1.0"
optional = true