set_of 0.0.3

I consent to the transfer of this crate to the first person who asks help@crates.io for it.
Documentation
[package]
name = "set_of"
description = "I consent to the transfer of this crate to the first person who asks help@crates.io for it."
version = "0.0.3"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/mcmah309/error_set"
rust-version = "1.81"

[dependencies]
error_set_impl = { version = "=0.8.2", path = "impl" }

# features
tracing = { version = "0.1", optional = true }
log = { version = "0.4", optional = true }
defmt = { version = "0.3", optional = true }

[dev-dependencies]
trybuild = "^1.0.91"
tracing-test = { version = "0.2", features = ["no-env-filter"] }
lazy_static = "1"

[workspace]
members = ["impl", "test_no_std"]


[features]
default = []
# Enables support for the tracing crate. Adds methods to `Result` that are applied on `Err` - e.g. `result.warn(...)`.
tracing = ["dep:tracing"]
# Enables support for the log crate. Adds methods to `Result` that are applied on `Err` - e.g. `result.warn(...)`.
log = ["dep:log"]
# Enables support for the defmt crate, which works with no_std. Adds methods to `Result` that are applied on `Err` - e.g. `result.warn(...)`.
defmt = ["dep:defmt"]
# Enables support for the log/tracing/defmt api, without pulling in any crates. Allowing a downstream to choose the appropriate crate.
context_stub = []

[package.metadata.docs.rs]
all-features = false
features = ["tracing"]
rustdoc-args = ["--cfg", "docsrs"]