fieldx 0.1.6

Procedural macro for constructing structs with lazily initialized fields, builder pattern, and serde support with a focus on declarative syntax.
Documentation
[dependencies.fieldx_aux]
version = "0.1.6"

[dependencies.fieldx_derive]
features = ["tracing"]
version = "0.1.6"

[dependencies.getset]
version = "0.1"

[dependencies.parking_lot]
version = "0.12"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.cargo-toolchain]
version = "0.1"

[dev-dependencies.crossbeam]
version = "0.8"

[dev-dependencies.num_cpus]
version = "1.16"

[dev-dependencies.parking_lot]
version = "0.12"

[dev-dependencies.rustc_version]
version = "0.4"

[dev-dependencies.serde_json]
version = "=1.0.117"

[dev-dependencies.trybuild]
version = "1.0"

[features]
diagnostics = ["fieldx_derive/diagnostics"]
send_guard = ["parking_lot/send_guard"]
serde = ["fieldx_derive/serde", "parking_lot/serde", "dep:serde"]

[lib]
name = "fieldx"
path = "src/lib.rs"

[package]
authors = ["Vadim Belman"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "development-tools::procedural-macro-helpers", "rust-patterns"]
description = "Procedural macro for constructing structs with lazily initialized fields, builder pattern, and serde support with a focus on declarative syntax."
edition = "2021"
exclude = ["Makefile.toml", "release.toml"]
keywords = ["lazy", "field", "macro", "builder", "struct"]
license-file = "LICENSE"
name = "fieldx"
readme = "README.md"
repository = "https://github.com/vrurg/fieldx.git"
version = "0.1.6"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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