[dependencies.litrs]
version = "0.4"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
features = ["full"]
version = "2.0"
[lib]
name = "cps"
path = "src/lib.rs"
proc-macro = true
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::procedural-macro-helpers", "rust-patterns"]
description = "Assists in the creation of readable and maintainable macro_rules! macros"
edition = "2021"
homepage = "https://github.com/LucentFlux/CPS"
include = ["/Cargo.toml", "/LICENSE", "/README.md", "/src/**", "/tests/**"]
keywords = ["macro", "macros", "utility"]
license = "MIT"
name = "cps"
readme = "README.md"
repository = "https://github.com/LucentFlux/CPS"
version = "0.3.0"
[[test]]
name = "dualbinding_tests"
path = "tests/dualbinding_tests.rs"
[[test]]
name = "dualmacro_tests"
path = "tests/dualmacro_tests.rs"
[[test]]
name = "error_message_check"
path = "tests/error_message_check.rs"
[[test]]
name = "inbuilt_macros_tests"
path = "tests/inbuilt_macros_tests.rs"
[[test]]
name = "manybinding_tests"
path = "tests/manybinding_tests.rs"
[[test]]
name = "monobinding_tests"
path = "tests/monobinding_tests.rs"
[[test]]
name = "morphbinding_tests"
path = "tests/morphbinding_tests.rs"
[[test]]
name = "mutual_recursion_tests"
path = "tests/mutual_recursion_tests.rs"
[[test]]
name = "unbound"
path = "tests/unbound.rs"
[[test]]
name = "unmodified_tests"
path = "tests/unmodified_tests.rs"