fundle 0.2.0

Compile-time safe dependency injection for Rust.
Documentation
[dependencies.fundle_macros]
default-features = false
version = "0.2.0"

[dev-dependencies.trybuild]
default-features = false
version = "1.0.111"

[[example]]
name = "tutorial_01_bundle"
path = "examples/tutorial_01_bundle.rs"

[[example]]
name = "tutorial_02_asref"
path = "examples/tutorial_02_asref.rs"

[[example]]
name = "tutorial_03_multiple"
path = "examples/tutorial_03_multiple.rs"

[[example]]
name = "tutorial_04_deps"
path = "examples/tutorial_04_deps.rs"

[[example]]
name = "tutorial_05_forwards"
path = "examples/tutorial_05_forwards.rs"

[lib]
name = "fundle"
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"
multiple_unsafe_ops_per_block = "warn"
redundant_type_annotations = "warn"
renamed_function_params = "warn"
semicolon_outside_block = "warn"
should_panic_without_expect = "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"

[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"

[package]
authors = ["The Oxidizer Project Authors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["rust-patterns"]
description = "Compile-time safe dependency injection for Rust."
edition = "2024"
homepage = "https://github.com/microsoft/oxidizer"
keywords = ["oxidizer", "di"]
license-file = "LICENSE"
name = "fundle"
readme = "README.md"
repository = "https://github.com/microsoft/oxidizer"
rust-version = "1.88"
version = "0.2.0"

[package.metadata.cargo_check_external_types]
allowed_external_types = ["fundle_macros::*"]

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

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

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

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