[package]
edition = "2024"
rust-version = "1.85.0"
name = "assertr-derive"
version = "0.2.4"
authors = ["Lukas Potthast <privat@lukas-potthast.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Derive AssertrEq implementations.
"""
readme = "README.md"
keywords = [
"assertions",
"assert",
"assert-that",
"testing",
]
categories = [
"development-tools::testing",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lpotthast/assertr"
[lib]
name = "assertr_derive"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "01-parse-single-field"
path = "tests/01-parse-single-field.rs"
[[test]]
name = "02-parse-multiple-fields"
path = "tests/02-parse-multiple-fields.rs"
[[test]]
name = "03-handle-non-pub-fields"
path = "tests/03-handle-non-pub-fields.rs"
[[test]]
name = "04-equality-check"
path = "tests/04-equality-check.rs"
[[test]]
name = "05-replace-field-type"
path = "tests/05-replace-field-type.rs"
[[test]]
name = "06-replace-deep-field-type"
path = "tests/06-replace-deep-field-type.rs"
[[test]]
name = "07-derive-impl-for-reference"
path = "tests/07-derive-impl-for-reference.rs"
[[test]]
name = "08-default-impl"
path = "tests/08-default-impl.rs"
[[test]]
name = "tests"
path = "tests/progress.rs"
[dependencies.darling]
version = "0.23.0"
[dependencies.proc-macro2]
version = "1.0.95"
[dependencies.quote]
version = "1.0.40"
[dependencies.syn]
version = "2.0.101"
features = ["extra-traits"]
[dev-dependencies.indoc]
version = "2.0.5"
[dev-dependencies.trybuild]
version = "1.0.103"
features = ["diff"]