[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-function"
version = "0.12.0"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
exclude = [
"coverage.sh",
"COVERAGE.md",
"COVERAGE.zh_CN.md",
".circleci/*",
"align-ci.sh",
"ci-check.sh",
".llvm-cov.toml",
".cargo-audit.toml.example",
"doc/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Functional programming traits and Box/Rc/Arc adapters for Rust, inspired by Java functional interfaces"
homepage = "https://github.com/qubit-ltd/rs-function"
documentation = "https://docs.rs/qubit-function"
readme = "README.md"
keywords = [
"functional",
"predicate",
"function",
"consumer",
"supplier",
]
categories = [
"development-tools",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-function"
[lib]
name = "qubit_function"
path = "src/lib.rs"
doctest = true
[[example]]
name = "always_bi_predicate_demo"
path = "examples/predicates/always_bi_predicate_demo.rs"
[[example]]
name = "always_predicate_demo"
path = "examples/predicates/always_predicate_demo.rs"
[[example]]
name = "bi_consumer_demo"
path = "examples/consumers/bi_consumer_demo.rs"
[[example]]
name = "bi_consumer_observation_demo"
path = "examples/consumers/bi_consumer_observation_demo.rs"
[[example]]
name = "bi_consumer_once_demo"
path = "examples/consumers/bi_consumer_once_demo.rs"
[[example]]
name = "bi_transformer_and_then_demo"
path = "examples/transformers/bi_transformer_and_then_demo.rs"
[[example]]
name = "bi_transformer_demo"
path = "examples/transformers/bi_transformer_demo.rs"
[[example]]
name = "bi_transformer_once_and_then_demo"
path = "examples/transformers/bi_transformer_once_and_then_demo.rs"
[[example]]
name = "bi_transformer_once_demo"
path = "examples/transformers/bi_transformer_once_demo.rs"
[[example]]
name = "closure_supplier_ops_demo"
path = "examples/suppliers/closure_supplier_ops_demo.rs"
[[example]]
name = "comparator_demo"
path = "examples/comparator/comparator_demo.rs"
[[example]]
name = "consumer_demo"
path = "examples/consumers/consumer_demo.rs"
[[example]]
name = "consumer_fn_usage"
path = "examples/consumers/consumer_fn_usage.rs"
[[example]]
name = "consumer_once_demo"
path = "examples/consumers/consumer_once_demo.rs"
[[example]]
name = "fn_bi_transformer_ops_demo"
path = "examples/transformers/fn_bi_transformer_ops_demo.rs"
[[example]]
name = "fn_transformer_once_ops_demo"
path = "examples/transformers/fn_transformer_once_ops_demo.rs"
[[example]]
name = "fn_transformer_ops_demo"
path = "examples/transformers/fn_transformer_ops_demo.rs"
[[example]]
name = "function_family_demo"
path = "examples/functions/function_family_demo.rs"
[[example]]
name = "mutator_demo"
path = "examples/mutators/mutator_demo.rs"
[[example]]
name = "mutator_once_conditional_demo"
path = "examples/mutators/mutator_once_conditional_demo.rs"
[[example]]
name = "mutator_once_demo"
path = "examples/mutators/mutator_once_demo.rs"
[[example]]
name = "predicate_demo"
path = "examples/predicates/predicate_demo.rs"
[[example]]
name = "predicate_fn_mut_demo"
path = "examples/predicates/predicate_fn_mut_demo.rs"
[[example]]
name = "predicate_set_name_demo"
path = "examples/predicates/predicate_set_name_demo.rs"
[[example]]
name = "stateful_supplier_demo"
path = "examples/suppliers/stateful_supplier_demo.rs"
[[example]]
name = "stateful_transformer_demo"
path = "examples/transformers/stateful_transformer_demo.rs"
[[example]]
name = "task_demo"
path = "examples/tasks/task_demo.rs"
[[example]]
name = "tester_demo"
path = "examples/tester/tester_demo.rs"
[[example]]
name = "transformer_blanket_impl_demo"
path = "examples/transformers/transformer_blanket_impl_demo.rs"
[[example]]
name = "transformer_demo"
path = "examples/transformers/transformer_demo.rs"
[[example]]
name = "transformer_once_blanket_impl_demo"
path = "examples/transformers/transformer_once_blanket_impl_demo.rs"
[[example]]
name = "transformer_once_demo"
path = "examples/transformers/transformer_once_demo.rs"
[[example]]
name = "transformer_once_specialized_methods_demo"
path = "examples/transformers/transformer_once_specialized_methods_demo.rs"
[[test]]
name = "arc_bi_consumer_tests"
path = "tests/arc_bi_consumer_tests.rs"
[[test]]
name = "arc_bi_function_tests"
path = "tests/arc_bi_function_tests.rs"
[[test]]
name = "arc_bi_mutating_function_tests"
path = "tests/arc_bi_mutating_function_tests.rs"
[[test]]
name = "arc_bi_predicate_tests"
path = "tests/arc_bi_predicate_tests.rs"
[[test]]
name = "arc_bi_transformer_tests"
path = "tests/arc_bi_transformer_tests.rs"
[[test]]
name = "arc_callable_tests"
path = "tests/arc_callable_tests.rs"
[[test]]
name = "arc_callable_with_tests"
path = "tests/arc_callable_with_tests.rs"
[[test]]
name = "arc_comparator_tests"
path = "tests/arc_comparator_tests.rs"
[[test]]
name = "arc_conditional_bi_consumer_tests"
path = "tests/arc_conditional_bi_consumer_tests.rs"
[[test]]
name = "arc_conditional_bi_function_tests"
path = "tests/arc_conditional_bi_function_tests.rs"
[[test]]
name = "arc_conditional_bi_mutating_function_tests"
path = "tests/arc_conditional_bi_mutating_function_tests.rs"
[[test]]
name = "arc_conditional_bi_transformer_tests"
path = "tests/arc_conditional_bi_transformer_tests.rs"
[[test]]
name = "arc_conditional_consumer_tests"
path = "tests/arc_conditional_consumer_tests.rs"
[[test]]
name = "arc_conditional_function_tests"
path = "tests/arc_conditional_function_tests.rs"
[[test]]
name = "arc_conditional_mutating_function_tests"
path = "tests/arc_conditional_mutating_function_tests.rs"
[[test]]
name = "arc_conditional_mutator_tests"
path = "tests/arc_conditional_mutator_tests.rs"
[[test]]
name = "arc_conditional_stateful_bi_consumer_tests"
path = "tests/arc_conditional_stateful_bi_consumer_tests.rs"
[[test]]
name = "arc_conditional_stateful_bi_transformer_tests"
path = "tests/arc_conditional_stateful_bi_transformer_tests.rs"
[[test]]
name = "arc_conditional_stateful_consumer_tests"
path = "tests/arc_conditional_stateful_consumer_tests.rs"
[[test]]
name = "arc_conditional_stateful_function_tests"
path = "tests/arc_conditional_stateful_function_tests.rs"
[[test]]
name = "arc_conditional_stateful_mutating_function_tests"
path = "tests/arc_conditional_stateful_mutating_function_tests.rs"
[[test]]
name = "arc_conditional_stateful_mutator_tests"
path = "tests/arc_conditional_stateful_mutator_tests.rs"
[[test]]
name = "arc_conditional_stateful_transformer_tests"
path = "tests/arc_conditional_stateful_transformer_tests.rs"
[[test]]
name = "arc_conditional_transformer_tests"
path = "tests/arc_conditional_transformer_tests.rs"
[[test]]
name = "arc_consumer_tests"
path = "tests/arc_consumer_tests.rs"
[[test]]
name = "arc_conversions_tests"
path = "tests/arc_conversions_tests.rs"
[[test]]
name = "arc_function_tests"
path = "tests/arc_function_tests.rs"
[[test]]
name = "arc_mutating_function_tests"
path = "tests/arc_mutating_function_tests.rs"
[[test]]
name = "arc_mutator_tests"
path = "tests/arc_mutator_tests.rs"
[[test]]
name = "arc_predicate_tests"
path = "tests/arc_predicate_tests.rs"
[[test]]
name = "arc_runnable_tests"
path = "tests/arc_runnable_tests.rs"
[[test]]
name = "arc_runnable_with_tests"
path = "tests/arc_runnable_with_tests.rs"
[[test]]
name = "arc_stateful_bi_consumer_tests"
path = "tests/arc_stateful_bi_consumer_tests.rs"
[[test]]
name = "arc_stateful_bi_transformer_tests"
path = "tests/arc_stateful_bi_transformer_tests.rs"
[[test]]
name = "arc_stateful_consumer_tests"
path = "tests/arc_stateful_consumer_tests.rs"
[[test]]
name = "arc_stateful_function_tests"
path = "tests/arc_stateful_function_tests.rs"
[[test]]
name = "arc_stateful_mutating_function_tests"
path = "tests/arc_stateful_mutating_function_tests.rs"
[[test]]
name = "arc_stateful_mutator_tests"
path = "tests/arc_stateful_mutator_tests.rs"
[[test]]
name = "arc_stateful_supplier_tests"
path = "tests/arc_stateful_supplier_tests.rs"
[[test]]
name = "arc_stateful_transformer_tests"
path = "tests/arc_stateful_transformer_tests.rs"
[[test]]
name = "arc_supplier_tests"
path = "tests/arc_supplier_tests.rs"
[[test]]
name = "arc_tester_tests"
path = "tests/arc_tester_tests.rs"
[[test]]
name = "arc_transformer_tests"
path = "tests/arc_transformer_tests.rs"
[[test]]
name = "binary_operator_once_tests"
path = "tests/binary_operator_once_tests.rs"
[[test]]
name = "box_bi_consumer_once_tests"
path = "tests/box_bi_consumer_once_tests.rs"
[[test]]
name = "box_bi_consumer_tests"
path = "tests/box_bi_consumer_tests.rs"
[[test]]
name = "box_bi_function_once_tests"
path = "tests/box_bi_function_once_tests.rs"
[[test]]
name = "box_bi_function_tests"
path = "tests/box_bi_function_tests.rs"
[[test]]
name = "box_bi_mutating_function_once_tests"
path = "tests/box_bi_mutating_function_once_tests.rs"
[[test]]
name = "box_bi_mutating_function_tests"
path = "tests/box_bi_mutating_function_tests.rs"
[[test]]
name = "box_bi_predicate_tests"
path = "tests/box_bi_predicate_tests.rs"
[[test]]
name = "box_bi_transformer_once_tests"
path = "tests/box_bi_transformer_once_tests.rs"
[[test]]
name = "box_bi_transformer_tests"
path = "tests/box_bi_transformer_tests.rs"
[[test]]
name = "box_callable_once_tests"
path = "tests/box_callable_once_tests.rs"
[[test]]
name = "box_callable_tests"
path = "tests/box_callable_tests.rs"
[[test]]
name = "box_callable_with_tests"
path = "tests/box_callable_with_tests.rs"
[[test]]
name = "box_comparator_tests"
path = "tests/box_comparator_tests.rs"
[[test]]
name = "box_conditional_bi_consumer_once_tests"
path = "tests/box_conditional_bi_consumer_once_tests.rs"
[[test]]
name = "box_conditional_bi_consumer_tests"
path = "tests/box_conditional_bi_consumer_tests.rs"
[[test]]
name = "box_conditional_bi_function_once_tests"
path = "tests/box_conditional_bi_function_once_tests.rs"
[[test]]
name = "box_conditional_bi_function_tests"
path = "tests/box_conditional_bi_function_tests.rs"
[[test]]
name = "box_conditional_bi_mutating_function_once_tests"
path = "tests/box_conditional_bi_mutating_function_once_tests.rs"
[[test]]
name = "box_conditional_bi_mutating_function_tests"
path = "tests/box_conditional_bi_mutating_function_tests.rs"
[[test]]
name = "box_conditional_bi_transformer_once_tests"
path = "tests/box_conditional_bi_transformer_once_tests.rs"
[[test]]
name = "box_conditional_bi_transformer_tests"
path = "tests/box_conditional_bi_transformer_tests.rs"
[[test]]
name = "box_conditional_consumer_once_tests"
path = "tests/box_conditional_consumer_once_tests.rs"
[[test]]
name = "box_conditional_consumer_tests"
path = "tests/box_conditional_consumer_tests.rs"
[[test]]
name = "box_conditional_function_once_tests"
path = "tests/box_conditional_function_once_tests.rs"
[[test]]
name = "box_conditional_function_tests"
path = "tests/box_conditional_function_tests.rs"
[[test]]
name = "box_conditional_mutating_function_once_tests"
path = "tests/box_conditional_mutating_function_once_tests.rs"
[[test]]
name = "box_conditional_mutating_function_tests"
path = "tests/box_conditional_mutating_function_tests.rs"
[[test]]
name = "box_conditional_mutator_once_tests"
path = "tests/box_conditional_mutator_once_tests.rs"
[[test]]
name = "box_conditional_mutator_tests"
path = "tests/box_conditional_mutator_tests.rs"
[[test]]
name = "box_conditional_stateful_bi_consumer_tests"
path = "tests/box_conditional_stateful_bi_consumer_tests.rs"
[[test]]
name = "box_conditional_stateful_bi_transformer_tests"
path = "tests/box_conditional_stateful_bi_transformer_tests.rs"
[[test]]
name = "box_conditional_stateful_consumer_tests"
path = "tests/box_conditional_stateful_consumer_tests.rs"
[[test]]
name = "box_conditional_stateful_function_tests"
path = "tests/box_conditional_stateful_function_tests.rs"
[[test]]
name = "box_conditional_stateful_mutating_function_tests"
path = "tests/box_conditional_stateful_mutating_function_tests.rs"
[[test]]
name = "box_conditional_stateful_mutator_tests"
path = "tests/box_conditional_stateful_mutator_tests.rs"
[[test]]
name = "box_conditional_stateful_transformer_tests"
path = "tests/box_conditional_stateful_transformer_tests.rs"
[[test]]
name = "box_conditional_transformer_once_tests"
path = "tests/box_conditional_transformer_once_tests.rs"
[[test]]
name = "box_conditional_transformer_tests"
path = "tests/box_conditional_transformer_tests.rs"
[[test]]
name = "box_consumer_methods_tests"
path = "tests/box_consumer_methods_tests.rs"
[[test]]
name = "box_consumer_once_tests"
path = "tests/box_consumer_once_tests.rs"
[[test]]
name = "box_consumer_tests"
path = "tests/box_consumer_tests.rs"
[[test]]
name = "box_conversions_tests"
path = "tests/box_conversions_tests.rs"
[[test]]
name = "box_function_methods_tests"
path = "tests/box_function_methods_tests.rs"
[[test]]
name = "box_function_once_tests"
path = "tests/box_function_once_tests.rs"
[[test]]
name = "box_function_tests"
path = "tests/box_function_tests.rs"
[[test]]
name = "box_mutating_function_once_tests"
path = "tests/box_mutating_function_once_tests.rs"
[[test]]
name = "box_mutating_function_tests"
path = "tests/box_mutating_function_tests.rs"
[[test]]
name = "box_mutator_methods_tests"
path = "tests/box_mutator_methods_tests.rs"
[[test]]
name = "box_mutator_once_tests"
path = "tests/box_mutator_once_tests.rs"
[[test]]
name = "box_mutator_tests"
path = "tests/box_mutator_tests.rs"
[[test]]
name = "box_predicate_methods_tests"
path = "tests/box_predicate_methods_tests.rs"
[[test]]
name = "box_predicate_tests"
path = "tests/box_predicate_tests.rs"
[[test]]
name = "box_runnable_once_tests"
path = "tests/box_runnable_once_tests.rs"
[[test]]
name = "box_runnable_tests"
path = "tests/box_runnable_tests.rs"
[[test]]
name = "box_runnable_with_tests"
path = "tests/box_runnable_with_tests.rs"
[[test]]
name = "box_stateful_bi_consumer_tests"
path = "tests/box_stateful_bi_consumer_tests.rs"
[[test]]
name = "box_stateful_bi_transformer_tests"
path = "tests/box_stateful_bi_transformer_tests.rs"
[[test]]
name = "box_stateful_consumer_tests"
path = "tests/box_stateful_consumer_tests.rs"
[[test]]
name = "box_stateful_function_tests"
path = "tests/box_stateful_function_tests.rs"
[[test]]
name = "box_stateful_mutating_function_tests"
path = "tests/box_stateful_mutating_function_tests.rs"
[[test]]
name = "box_stateful_mutator_tests"
path = "tests/box_stateful_mutator_tests.rs"
[[test]]
name = "box_stateful_supplier_tests"
path = "tests/box_stateful_supplier_tests.rs"
[[test]]
name = "box_stateful_transformer_tests"
path = "tests/box_stateful_transformer_tests.rs"
[[test]]
name = "box_supplier_methods_tests"
path = "tests/box_supplier_methods_tests.rs"
[[test]]
name = "box_supplier_once_tests"
path = "tests/box_supplier_once_tests.rs"
[[test]]
name = "box_supplier_tests"
path = "tests/box_supplier_tests.rs"
[[test]]
name = "box_tester_tests"
path = "tests/box_tester_tests.rs"
[[test]]
name = "box_transformer_methods_tests"
path = "tests/box_transformer_methods_tests.rs"
[[test]]
name = "box_transformer_once_tests"
path = "tests/box_transformer_once_tests.rs"
[[test]]
name = "box_transformer_tests"
path = "tests/box_transformer_tests.rs"
[[test]]
name = "closure_once_trait_tests"
path = "tests/closure_once_trait_tests.rs"
[[test]]
name = "closure_trait_tests"
path = "tests/closure_trait_tests.rs"
[[test]]
name = "common_name_methods_tests"
path = "tests/common_name_methods_tests.rs"
[[test]]
name = "common_new_methods_tests"
path = "tests/common_new_methods_tests.rs"
[[test]]
name = "comparator_tests"
path = "tests/comparator_tests.rs"
[[test]]
name = "conditional_consumer_clone_tests"
path = "tests/conditional_consumer_clone_tests.rs"
[[test]]
name = "conditional_consumer_conversions_tests"
path = "tests/conditional_consumer_conversions_tests.rs"
[[test]]
name = "conditional_consumer_debug_display_tests"
path = "tests/conditional_consumer_debug_display_tests.rs"
[[test]]
name = "conditional_function_clone_macro_tests"
path = "tests/conditional_function_clone_macro_tests.rs"
[[test]]
name = "conditional_function_clone_tests"
path = "tests/conditional_function_clone_tests.rs"
[[test]]
name = "conditional_function_debug_display_tests"
path = "tests/conditional_function_debug_display_tests.rs"
[[test]]
name = "conditional_mutator_clone_tests"
path = "tests/conditional_mutator_clone_tests.rs"
[[test]]
name = "conditional_mutator_conversions_tests"
path = "tests/conditional_mutator_conversions_tests.rs"
[[test]]
name = "conditional_mutator_debug_display_tests"
path = "tests/conditional_mutator_debug_display_tests.rs"
[[test]]
name = "conditional_transformer_clone_tests"
path = "tests/conditional_transformer_clone_tests.rs"
[[test]]
name = "conditional_transformer_debug_display_tests"
path = "tests/conditional_transformer_debug_display_tests.rs"
[[test]]
name = "constants_tests"
path = "tests/constants_tests.rs"
[[test]]
name = "consumer_clone_tests"
path = "tests/consumer_clone_tests.rs"
[[test]]
name = "consumer_common_methods_tests"
path = "tests/consumer_common_methods_tests.rs"
[[test]]
name = "consumer_debug_display_tests"
path = "tests/consumer_debug_display_tests.rs"
[[test]]
name = "fn_bi_consumer_once_ops_tests"
path = "tests/fn_bi_consumer_once_ops_tests.rs"
[[test]]
name = "fn_bi_consumer_ops_tests"
path = "tests/fn_bi_consumer_ops_tests.rs"
[[test]]
name = "fn_bi_function_once_ops_tests"
path = "tests/fn_bi_function_once_ops_tests.rs"
[[test]]
name = "fn_bi_function_ops_tests"
path = "tests/fn_bi_function_ops_tests.rs"
[[test]]
name = "fn_bi_mutating_function_once_ops_tests"
path = "tests/fn_bi_mutating_function_once_ops_tests.rs"
[[test]]
name = "fn_bi_mutating_function_ops_tests"
path = "tests/fn_bi_mutating_function_ops_tests.rs"
[[test]]
name = "fn_bi_predicate_ops_tests"
path = "tests/fn_bi_predicate_ops_tests.rs"
[[test]]
name = "fn_comparator_ops_tests"
path = "tests/fn_comparator_ops_tests.rs"
[[test]]
name = "fn_consumer_once_ops_tests"
path = "tests/fn_consumer_once_ops_tests.rs"
[[test]]
name = "fn_consumer_ops_tests"
path = "tests/fn_consumer_ops_tests.rs"
[[test]]
name = "fn_function_once_ops_tests"
path = "tests/fn_function_once_ops_tests.rs"
[[test]]
name = "fn_function_ops_tests"
path = "tests/fn_function_ops_tests.rs"
[[test]]
name = "fn_mut_stateful_mutator_ops_tests"
path = "tests/fn_mut_stateful_mutator_ops_tests.rs"
[[test]]
name = "fn_mutating_function_once_ops_tests"
path = "tests/fn_mutating_function_once_ops_tests.rs"
[[test]]
name = "fn_mutating_function_ops_tests"
path = "tests/fn_mutating_function_ops_tests.rs"
[[test]]
name = "fn_mutator_once_ops_tests"
path = "tests/fn_mutator_once_ops_tests.rs"
[[test]]
name = "fn_mutator_ops_tests"
path = "tests/fn_mutator_ops_tests.rs"
[[test]]
name = "fn_ops_trait_tests"
path = "tests/fn_ops_trait_tests.rs"
[[test]]
name = "fn_predicate_ops_tests"
path = "tests/fn_predicate_ops_tests.rs"
[[test]]
name = "fn_stateful_bi_consumer_ops_tests"
path = "tests/fn_stateful_bi_consumer_ops_tests.rs"
[[test]]
name = "fn_stateful_bi_transformer_ops_tests"
path = "tests/fn_stateful_bi_transformer_ops_tests.rs"
[[test]]
name = "fn_stateful_consumer_ops_tests"
path = "tests/fn_stateful_consumer_ops_tests.rs"
[[test]]
name = "fn_stateful_function_ops_tests"
path = "tests/fn_stateful_function_ops_tests.rs"
[[test]]
name = "fn_stateful_mutating_function_ops_tests"
path = "tests/fn_stateful_mutating_function_ops_tests.rs"
[[test]]
name = "fn_stateful_supplier_ops_tests"
path = "tests/fn_stateful_supplier_ops_tests.rs"
[[test]]
name = "fn_stateful_transformer_ops_tests"
path = "tests/fn_stateful_transformer_ops_tests.rs"
[[test]]
name = "fn_tester_ops_tests"
path = "tests/fn_tester_ops_tests.rs"
[[test]]
name = "function_clone_tests"
path = "tests/function_clone_tests.rs"
[[test]]
name = "function_common_methods_tests"
path = "tests/function_common_methods_tests.rs"
[[test]]
name = "function_constant_method_tests"
path = "tests/function_constant_method_tests.rs"
[[test]]
name = "function_debug_display_tests"
path = "tests/function_debug_display_tests.rs"
[[test]]
name = "function_identity_method_tests"
path = "tests/function_identity_method_tests.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "mutator_clone_tests"
path = "tests/mutator_clone_tests.rs"
[[test]]
name = "mutator_common_methods_tests"
path = "tests/mutator_common_methods_tests.rs"
[[test]]
name = "mutator_debug_display_tests"
path = "tests/mutator_debug_display_tests.rs"
[[test]]
name = "predicate_clone_tests"
path = "tests/predicate_clone_tests.rs"
[[test]]
name = "predicate_common_methods_tests"
path = "tests/predicate_common_methods_tests.rs"
[[test]]
name = "predicate_debug_display_tests"
path = "tests/predicate_debug_display_tests.rs"
[[test]]
name = "rc_bi_consumer_tests"
path = "tests/rc_bi_consumer_tests.rs"
[[test]]
name = "rc_bi_function_tests"
path = "tests/rc_bi_function_tests.rs"
[[test]]
name = "rc_bi_mutating_function_tests"
path = "tests/rc_bi_mutating_function_tests.rs"
[[test]]
name = "rc_bi_predicate_tests"
path = "tests/rc_bi_predicate_tests.rs"
[[test]]
name = "rc_bi_transformer_tests"
path = "tests/rc_bi_transformer_tests.rs"
[[test]]
name = "rc_callable_tests"
path = "tests/rc_callable_tests.rs"
[[test]]
name = "rc_callable_with_tests"
path = "tests/rc_callable_with_tests.rs"
[[test]]
name = "rc_comparator_tests"
path = "tests/rc_comparator_tests.rs"
[[test]]
name = "rc_conditional_bi_consumer_tests"
path = "tests/rc_conditional_bi_consumer_tests.rs"
[[test]]
name = "rc_conditional_bi_function_tests"
path = "tests/rc_conditional_bi_function_tests.rs"
[[test]]
name = "rc_conditional_bi_mutating_function_tests"
path = "tests/rc_conditional_bi_mutating_function_tests.rs"
[[test]]
name = "rc_conditional_bi_transformer_tests"
path = "tests/rc_conditional_bi_transformer_tests.rs"
[[test]]
name = "rc_conditional_consumer_tests"
path = "tests/rc_conditional_consumer_tests.rs"
[[test]]
name = "rc_conditional_function_tests"
path = "tests/rc_conditional_function_tests.rs"
[[test]]
name = "rc_conditional_mutating_function_tests"
path = "tests/rc_conditional_mutating_function_tests.rs"
[[test]]
name = "rc_conditional_mutator_tests"
path = "tests/rc_conditional_mutator_tests.rs"
[[test]]
name = "rc_conditional_stateful_bi_consumer_tests"
path = "tests/rc_conditional_stateful_bi_consumer_tests.rs"
[[test]]
name = "rc_conditional_stateful_bi_transformer_tests"
path = "tests/rc_conditional_stateful_bi_transformer_tests.rs"
[[test]]
name = "rc_conditional_stateful_consumer_tests"
path = "tests/rc_conditional_stateful_consumer_tests.rs"
[[test]]
name = "rc_conditional_stateful_function_tests"
path = "tests/rc_conditional_stateful_function_tests.rs"
[[test]]
name = "rc_conditional_stateful_mutating_function_tests"
path = "tests/rc_conditional_stateful_mutating_function_tests.rs"
[[test]]
name = "rc_conditional_stateful_mutator_tests"
path = "tests/rc_conditional_stateful_mutator_tests.rs"
[[test]]
name = "rc_conditional_stateful_transformer_tests"
path = "tests/rc_conditional_stateful_transformer_tests.rs"
[[test]]
name = "rc_conditional_transformer_tests"
path = "tests/rc_conditional_transformer_tests.rs"
[[test]]
name = "rc_consumer_tests"
path = "tests/rc_consumer_tests.rs"
[[test]]
name = "rc_conversions_tests"
path = "tests/rc_conversions_tests.rs"
[[test]]
name = "rc_function_tests"
path = "tests/rc_function_tests.rs"
[[test]]
name = "rc_mutating_function_tests"
path = "tests/rc_mutating_function_tests.rs"
[[test]]
name = "rc_mutator_tests"
path = "tests/rc_mutator_tests.rs"
[[test]]
name = "rc_predicate_tests"
path = "tests/rc_predicate_tests.rs"
[[test]]
name = "rc_runnable_tests"
path = "tests/rc_runnable_tests.rs"
[[test]]
name = "rc_runnable_with_tests"
path = "tests/rc_runnable_with_tests.rs"
[[test]]
name = "rc_stateful_bi_consumer_tests"
path = "tests/rc_stateful_bi_consumer_tests.rs"
[[test]]
name = "rc_stateful_bi_transformer_tests"
path = "tests/rc_stateful_bi_transformer_tests.rs"
[[test]]
name = "rc_stateful_consumer_tests"
path = "tests/rc_stateful_consumer_tests.rs"
[[test]]
name = "rc_stateful_function_tests"
path = "tests/rc_stateful_function_tests.rs"
[[test]]
name = "rc_stateful_mutating_function_tests"
path = "tests/rc_stateful_mutating_function_tests.rs"
[[test]]
name = "rc_stateful_mutator_tests"
path = "tests/rc_stateful_mutator_tests.rs"
[[test]]
name = "rc_stateful_supplier_tests"
path = "tests/rc_stateful_supplier_tests.rs"
[[test]]
name = "rc_stateful_transformer_tests"
path = "tests/rc_stateful_transformer_tests.rs"
[[test]]
name = "rc_supplier_tests"
path = "tests/rc_supplier_tests.rs"
[[test]]
name = "rc_tester_tests"
path = "tests/rc_tester_tests.rs"
[[test]]
name = "rc_transformer_tests"
path = "tests/rc_transformer_tests.rs"
[[test]]
name = "reexports_tests"
path = "tests/reexports_tests.rs"
[[test]]
name = "relaxed_bounds_tests"
path = "tests/relaxed_bounds_tests.rs"
[[test]]
name = "relaxed_macro_bounds_tests"
path = "tests/relaxed_macro_bounds_tests.rs"
[[test]]
name = "shared_conditional_consumer_tests"
path = "tests/shared_conditional_consumer_tests.rs"
[[test]]
name = "shared_conditional_function_tests"
path = "tests/shared_conditional_function_tests.rs"
[[test]]
name = "shared_conditional_mutator_tests"
path = "tests/shared_conditional_mutator_tests.rs"
[[test]]
name = "shared_conditional_transformer_tests"
path = "tests/shared_conditional_transformer_tests.rs"
[[test]]
name = "shared_consumer_methods_tests"
path = "tests/shared_consumer_methods_tests.rs"
[[test]]
name = "shared_function_methods_tests"
path = "tests/shared_function_methods_tests.rs"
[[test]]
name = "shared_mutator_methods_tests"
path = "tests/shared_mutator_methods_tests.rs"
[[test]]
name = "shared_predicate_methods_tests"
path = "tests/shared_predicate_methods_tests.rs"
[[test]]
name = "shared_supplier_methods_tests"
path = "tests/shared_supplier_methods_tests.rs"
[[test]]
name = "shared_transformer_methods_tests"
path = "tests/shared_transformer_methods_tests.rs"
[[test]]
name = "stateful_binary_operator_tests"
path = "tests/stateful_binary_operator_tests.rs"
[[test]]
name = "supplier_clone_tests"
path = "tests/supplier_clone_tests.rs"
[[test]]
name = "supplier_common_methods_tests"
path = "tests/supplier_common_methods_tests.rs"
[[test]]
name = "supplier_debug_display_tests"
path = "tests/supplier_debug_display_tests.rs"
[[test]]
name = "tester_tests"
path = "tests/tester_tests.rs"
[[test]]
name = "transformer_clone_tests"
path = "tests/transformer_clone_tests.rs"
[[test]]
name = "transformer_common_methods_tests"
path = "tests/transformer_common_methods_tests.rs"
[[test]]
name = "transformer_constant_method_tests"
path = "tests/transformer_constant_method_tests.rs"
[[test]]
name = "transformer_debug_display_tests"
path = "tests/transformer_debug_display_tests.rs"
[[test]]
name = "unary_operator_once_tests"
path = "tests/unary_operator_once_tests.rs"
[dependencies.parking_lot]
version = "0.12"
[dependencies.paste]
version = "0.2"
package = "pastey"
[lints.clippy]
type_complexity = "allow"