derive_more 1.0.0

Adds #[derive(x)] macros for more traits
Documentation
[package]
name = "derive_more"
version = "1.0.0"
edition = "2021"
rust-version = "1.75.0"
description = "Adds #[derive(x)] macros for more traits"
authors = ["Jelte Fennema <github-tech@jeltef.nl>"]
license = "MIT"
repository = "https://github.com/JelteF/derive_more"
documentation = "https://docs.rs/derive_more"

readme = "README.md"
keywords = ["derive", "Add", "From", "Display", "IntoIterator"]
categories = ["development-tools", "development-tools::procedural-macro-helpers", "no-std", "rust-patterns"]

include = [
    "src/**/*.rs",
    "Cargo.toml",
    "LICENSE",
    "README.md",
    "CHANGELOG.md",
    "tests/**/*.rs", # debian packaging wants this
    "examples/**/*.rs"
]

[workspace]
members = ["impl"]

[dependencies]
derive_more-impl = { version = "=1.0.0", path = "impl" }

[build-dependencies]
rustc_version = { version = "0.4", optional = true }

[dev-dependencies]
rustversion = "1.0"
static_assertions = "1.1"
trybuild = "1.0.56"

[badges]
github = { repository = "JelteF/derive_more", workflow = "CI" }

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

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(ci)", "cfg(nightly)"] }

[features]
default = ["std"]

add = ["derive_more-impl/add"]
add_assign = ["derive_more-impl/add_assign"]
as_ref = ["derive_more-impl/as_ref"]
constructor = ["derive_more-impl/constructor"]
debug = ["derive_more-impl/debug"]
deref = ["derive_more-impl/deref"]
deref_mut = ["derive_more-impl/deref_mut"]
display = ["derive_more-impl/display"]
error = ["derive_more-impl/error"]
from = ["derive_more-impl/from"]
from_str = ["derive_more-impl/from_str"]
index = ["derive_more-impl/index"]
index_mut = ["derive_more-impl/index_mut"]
into = ["derive_more-impl/into"]
into_iterator = ["derive_more-impl/into_iterator"]
is_variant = ["derive_more-impl/is_variant"]
mul = ["derive_more-impl/mul"]
mul_assign = ["derive_more-impl/mul_assign"]
not = ["derive_more-impl/not"]
sum = ["derive_more-impl/sum"]
try_from = ["derive_more-impl/try_from"]
try_into = ["derive_more-impl/try_into"]
try_unwrap = ["derive_more-impl/try_unwrap"]
unwrap = ["derive_more-impl/unwrap"]

std = []
full = [
    "add",
    "add_assign",
    "as_ref",
    "constructor",
    "debug",
    "deref",
    "deref_mut",
    "display",
    "error",
    "from",
    "from_str",
    "index",
    "index_mut",
    "into",
    "into_iterator",
    "is_variant",
    "mul",
    "mul_assign",
    "not",
    "sum",
    "try_from",
    "try_into",
    "try_unwrap",
    "unwrap",
]

testing-helpers = ["derive_more-impl/testing-helpers", "dep:rustc_version"]

[[test]]
name = "add"
path = "tests/add.rs"
required-features = ["add"]

[[test]]
name = "add_assign"
path = "tests/add_assign.rs"
required-features = ["add_assign"]

[[test]]
name = "as_mut"
path = "tests/as_mut.rs"
required-features = ["as_ref"]

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

[[test]]
name = "boats_display_derive"
path = "tests/boats_display_derive.rs"
required-features = ["display"]

[[test]]
name = "constructor"
path = "tests/constructor.rs"
required-features = ["constructor"]

[[test]]
name = "debug"
path = "tests/debug.rs"
required-features = ["debug"]

[[test]]
name = "deref"
path = "tests/deref.rs"
required-features = ["deref"]

[[test]]
name = "deref_mut"
path = "tests/deref_mut.rs"
required-features = ["deref_mut"]

[[test]]
name = "display"
path = "tests/display.rs"
required-features = ["display"]

[[test]]
name = "error"
path = "tests/error_tests.rs"
required-features = ["error"]

[[test]]
name = "from"
path = "tests/from.rs"
required-features = ["from"]

[[test]]
name = "from_str"
path = "tests/from_str.rs"
required-features = ["from_str"]

[[test]]
name = "index_mut"
path = "tests/index_mut.rs"
required-features = ["index_mut"]

[[test]]
name = "index"
path = "tests/index.rs"
required-features = ["index"]

[[test]]
name = "into"
path = "tests/into.rs"
required-features = ["into"]

[[test]]
name = "into_iterator"
path = "tests/into_iterator.rs"
required-features = ["into_iterator"]

[[test]]
name = "is_variant"
path = "tests/is_variant.rs"
required-features = ["is_variant"]

[[test]]
name = "mul"
path = "tests/mul.rs"
required-features = ["mul"]

[[test]]
name = "mul_assign"
path = "tests/mul_assign.rs"
required-features = ["mul_assign"]

[[test]]
name = "not"
path = "tests/not.rs"
required-features = ["not"]

[[test]]
name = "sum"
path = "tests/sum.rs"
required-features = ["sum"]

[[test]]
name = "try_from"
path = "tests/try_from.rs"
required-features = ["try_from"]

[[test]]
name = "try_into"
path = "tests/try_into.rs"
required-features = ["try_into"]

[[test]]
name = "try_unwrap"
path = "tests/try_unwrap.rs"
required-features = ["try_unwrap"]

[[test]]
name = "unwrap"
path = "tests/unwrap.rs"
required-features = ["unwrap"]

[[test]]
name = "compile_fail"
path = "tests/compile_fail/mod.rs"
required-features = ["as_ref", "debug", "display", "from", "into", "is_variant", "try_from"]

[[test]]
name = "no_std"
path = "tests/no_std.rs"
required-features = ["full"]

[[test]]
name = "generics"
path = "tests/generics.rs"
required-features = ["full"]

[[test]]
name = "lib"
path = "tests/lib.rs"
required-features = ["full"]

[[example]]
name = "deny_missing_docs"
path = "examples/deny_missing_docs.rs"
required-features = ["full"]