fundle_macros_impl 0.3.0

Procedural macros for the fundle crate.
Documentation
[dependencies.proc-macro2]
default-features = true
version = "1.0.103"

[dependencies.quote]
default-features = false
version = "1.0.42"

[dependencies.syn]
default-features = false
features = ["derive", "parsing", "proc-macro", "full", "extra-traits", "printing"]
version = "2.0.110"

[dev-dependencies.insta]
default-features = false
version = "1.43.2"

[dev-dependencies.mutants]
default-features = false
version = "0.0.3"

[dev-dependencies.prettyplease]
default-features = false
version = "0.2.37"

[dev-dependencies.syn]
default-features = false
features = ["derive", "parsing", "proc-macro", "full", "extra-traits", "printing", "clone-impls"]
version = "2.0.110"

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

[lints.clippy]
allow_attributes_without_reason = "warn"
as_pointer_underscore = "warn"
assertions_on_result_states = "warn"
clone_on_ref_ptr = "warn"
deref_by_slicing = "warn"
disallowed_script_idents = "warn"
empty_drop = "warn"
empty_enum_variants_with_brackets = "warn"
empty_structs_with_brackets = "warn"
fn_to_numeric_cast_any = "warn"
if_then_some_else_none = "warn"
map_err_ignore = "warn"
missing_const_for_fn = "allow"
multiple_unsafe_ops_per_block = "warn"
option_if_let_else = "allow"
redundant_pub_crate = "allow"
redundant_type_annotations = "warn"
renamed_function_params = "warn"
semicolon_outside_block = "warn"
should_panic_without_expect = "allow"
significant_drop_tightening = "allow"
string_to_string = "warn"
undocumented_unsafe_blocks = "warn"
unnecessary_safety_comment = "warn"
unnecessary_safety_doc = "warn"
unneeded_field_pattern = "warn"
unused_result_ok = "warn"
wildcard_imports = "allow"

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.complexity]
level = "warn"
priority = -1

[lints.clippy.correctness]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.clippy.perf]
level = "warn"
priority = -1

[lints.clippy.style]
level = "warn"
priority = -1

[lints.clippy.suspicious]
level = "warn"
priority = -1

[lints.rust]
ambiguous_negative_literals = "warn"
missing_debug_implementations = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
trivial_numeric_casts = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_lifetimes = "warn"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(coverage,coverage_nightly)"]
level = "warn"
priority = 0

[package]
authors = ["The Oxidizer Project Authors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["rust-patterns"]
description = "Procedural macros for the fundle crate."
edition = "2024"
homepage = "https://github.com/microsoft/oxidizer"
keywords = ["oxidizer", "di", "proc-macro"]
license-file = "LICENSE"
name = "fundle_macros_impl"
readme = "README.md"
repository = "https://github.com/microsoft/oxidizer"
rust-version = "1.88"
version = "0.3.0"

[package.metadata.cargo_check_external_types]
allowed_external_types = ["proc_macro2::*", "syn::error::*"]

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

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

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

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

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

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

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

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

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