quickfig 0.2.1

Quickfig: Replace boilerplate in apps that read from user configuration files
Documentation
# quickfig/quickfig/Cargo.toml (thin crate / re-exports)
[package]
name = "quickfig"
version.workspace = true
edition.workspace = true
authors.workspace = true
description.workspace = true
license.workspace = true
repository.workspace = true
readme = "../README.md"

[dependencies]
serde = { workspace = true }
quickfig_core = { version = "0.2.1", path = "../quickfig_core" }
quickfig_derive = { version = "0.2.1", path = "../quickfig_derive", optional = true }

[features]
# do not include quickfig_derive by default
default = []
# derive is the feature name, used via `features = ["derive"]`
# brackets include the dependencies that get compiled if feature is enabled
derive = ["quickfig_derive"]