mau 0.1.3

A Rust procedural macro library for memoization with MauQueue optimization
Documentation
[dependencies.iof]
version = "0.4.0"

[dependencies.proc-macro2]
version = "1.0"

[dependencies.quote]
version = "1.0"

[dependencies.syn]
features = ["full", "visit-mut"]
version = "2.0"

[lib]
name = "mau"
path = "src/lib.rs"
proc-macro = true

[package]
authors = ["zhangyang <zhangyang@outlook.es>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "rust-patterns"]
description = "A Rust procedural macro library for memoization with MauQueue optimization"
documentation = "https://docs.rs/mau"
edition = "2021"
homepage = "https://github.com/Flyshde/mau"
keywords = ["macro", "memoization", "optimization", "procedural-macro", "cache"]
license = "MIT OR Apache-2.0"
name = "mau"
readme = "README.md"
repository = "https://github.com/Flyshde/mau"
version = "0.1.3"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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